You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I append a short JS code segment that fails when I try to print querySet with console.log. As far as I can tell, I can't use the output of createQuerySet at all.
% deno run /tmp/foo.mjs
error: Uncaught (in promise) AssertionError: Assertion failed
console.log(querySet);
^
at assert (ext:deno_console/01_console.js:199:11)
at getKeys (ext:deno_console/01_console.js:1294:7)
at formatRaw (ext:deno_console/01_console.js:761:14)
at formatValue (ext:deno_console/01_console.js:545:10)
at inspect (ext:deno_console/01_console.js:3469:10)
at GPUQuerySet.[Deno.privateCustomInspect] (ext:deno_webgpu/01_webgpu.js:5252:12)
at formatValue (ext:deno_console/01_console.js:487:48)
at inspectArgs (ext:deno_console/01_console.js:3071:17)
at console.log (ext:deno_console/01_console.js:3140:7)
at main (file:///tmp/foo.mjs:23:11)
Converter for `GPUComputePassTimestampWrites` uses converter for
`GPUQuerySet` before it is defined making it impossible to use. This PR
simply reorders converter creation to resolve this issue. Logging the
`GPUQuerySet` still fails (as mentioned in #26769) but it is now usable
inside pass descriptors and works when used.
I append a short JS code segment that fails when I try to print
querySet
withconsole.log
. As far as I can tell, I can't use the output ofcreateQuerySet
at all.The text was updated successfully, but these errors were encountered: