Bug 1921416 Comment 3 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Notable console entries I see when I run the page myself:

* It looks like Firefox doesn't accept the `source`s that the application is trying to use. In this case, it's trying to use a `<video>`/`VideoElement`. This is [bug 1921454](https://bugzilla.mozilla.org/show_bug.cgi?id=1921454).
* A WGSL shader parse error that I'm confident is [bug 1829879](https://bugzilla.mozilla.org/show_bug.cgi?id=1829879):

   ```
   Shader '' parsing error: invalid switch value
   ┌─ wgsl:60:8
   │
   60 │   case 0:{
      │        ^ expected unsigned integer
         │
         = note: suffix the integer with a `u`: '0u'
         ```
Notable console entries I see when I run the page myself:

* It looks like Firefox doesn't accept the `source`s that the application is trying to use:

    ```
    Uncaught TypeError: GPUQueue.copyExternalImageToTexture: 'source' member of GPUImageCopyExternalImage could not be converted to any of: ImageBitmap, HTMLCanvasElement, OffscreenCanvas.
    ```

    In this case, it's trying to use a `<video>`/`VideoElement`. This is [bug 1921454](https://bugzilla.mozilla.org/show_bug.cgi?id=1921454).
* A WGSL shader parse error that I'm confident is [bug 1829879](https://bugzilla.mozilla.org/show_bug.cgi?id=1829879):

   ```
   Shader '' parsing error: invalid switch value
   ┌─ wgsl:60:8
   │
   60 │   case 0:{
      │        ^ expected unsigned integer
         │
         = note: suffix the integer with a `u`: '0u'
         ```
Notable console entries I see when I run the page myself:

* It looks like Firefox doesn't accept the `source`s that the application is trying to use:

    ```
    Uncaught TypeError: GPUQueue.copyExternalImageToTexture: 'source' member of GPUImageCopyExternalImage could not be converted to any of: ImageBitmap, HTMLCanvasElement, OffscreenCanvas.
    ```

    In this case, it's trying to use a `<video>`/`HTMLVideoElement`. This is [bug 1921454](https://bugzilla.mozilla.org/show_bug.cgi?id=1921454).
* A WGSL shader parse error that I'm confident is [bug 1829879](https://bugzilla.mozilla.org/show_bug.cgi?id=1829879):

   ```
   Shader '' parsing error: invalid switch value
   ┌─ wgsl:60:8
   │
   60 │   case 0:{
      │        ^ expected unsigned integer
         │
         = note: suffix the integer with a `u`: '0u'
         ```
Notable console entries I see when I run the page myself:

* It looks like Firefox doesn't accept the `source`s that the application is trying to use:

    ```
    Uncaught TypeError: GPUQueue.copyExternalImageToTexture: 'source' member of GPUImageCopyExternalImage could not be converted to any of: ImageBitmap, HTMLCanvasElement, OffscreenCanvas.
    ```

    In this case, it's trying to use a `<video>`/`HTMLVideoElement`. This is [bug 1921454](https://bugzilla.mozilla.org/show_bug.cgi?id=1921454).
* A WGSL shader parse error that I'm confident is [bug 1829879](https://bugzilla.mozilla.org/show_bug.cgi?id=1829879):

   ```
   Shader '' parsing error: invalid switch value
      ┌─ wgsl:60:8
      │
   60 │   case 0:{
      │        ^ expected unsigned integer
      │
      = note: suffix the integer with a `u`: '0u'
   ```

Back to Bug 1921416 Comment 3