File tree Expand file tree Collapse file tree 5 files changed +17
-3
lines changed
Expand file tree Collapse file tree 5 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 22
33This file was generated using [ @jscutlery/semver ] ( https://github.com/jscutlery/semver ) .
44
5+ ## [ 1.7.12] ( https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.7.11...@stream-io/video-react-sdk-1.7.12 ) (2024-11-08)
6+
7+ ### Dependency Updates
8+
9+ * ` @stream-io/video-filters-web ` updated to version ` 0.1.5 `
510## [ 1.7.11] ( https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.7.10...@stream-io/video-react-sdk-1.7.11 ) (2024-11-07)
611
712### Dependency Updates
Original file line number Diff line number Diff line change 11{
22 "name" : " @stream-io/video-react-sdk" ,
3- "version" : " 1.7.11 " ,
3+ "version" : " 1.7.12 " ,
44 "packageManager" :
" [email protected] " ,
55 "main" : " ./dist/index.cjs.js" ,
66 "module" : " ./dist/index.es.js" ,
Original file line number Diff line number Diff line change 22
33This file was generated using [ @jscutlery/semver ] ( https://github.com/jscutlery/semver ) .
44
5+ ## [ 0.1.5] ( https://github.com/GetStream/stream-video-js/compare/@stream-io/video-filters-web-0.1.4...@stream-io/video-filters-web-0.1.5 ) (2024-11-08)
6+
7+
8+ ### Bug Fixes
9+
10+ * guard against null fenceSync ([ #1565 ] ( https://github.com/GetStream/stream-video-js/issues/1565 ) ) ([ 9a3ae38] ( https://github.com/GetStream/stream-video-js/commit/9a3ae385ebed5b7fd44855ed2a7b7fc01ac53792 ) )
11+
512## [ 0.1.4] ( https://github.com/GetStream/stream-video-js/compare/@stream-io/video-filters-web-0.1.3...@stream-io/video-filters-web-0.1.4 ) (2024-09-19)
613
714
Original file line number Diff line number Diff line change 11{
22 "name" : " @stream-io/video-filters-web" ,
3- "version" : " 0.1.4 " ,
3+ "version" : " 0.1.5 " ,
44 "packageManager" :
" [email protected] " ,
55 "main" : " ./dist/index.cjs.js" ,
66 "module" : " ./dist/index.es.js" ,
Original file line number Diff line number Diff line change @@ -111,8 +111,10 @@ async function getBufferSubDataAsync(
111111 dstOffset ?: number ,
112112 length ?: number ,
113113) {
114- const sync = gl . fenceSync ( gl . SYNC_GPU_COMMANDS_COMPLETE , 0 ) ! ;
114+ const sync = gl . fenceSync ( gl . SYNC_GPU_COMMANDS_COMPLETE , 0 ) ;
115115 gl . flush ( ) ;
116+ if ( ! sync ) return ;
117+
116118 const res = await clientWaitAsync ( gl , sync ) ;
117119 gl . deleteSync ( sync ) ;
118120
You can’t perform that action at this time.
0 commit comments