Skip to content

Make it possible/easier to determine a suitable resolution for equirects, cylinders, (cubemaps?) and quads #238

Open
@dominiccooney

Description

@dominiccooney

The layer types with XR*LayerInit : XRLayerInit require authors to specify viewPixelWidth and viewPixelHeight. Working out effective values for these seems difficult.

I have my source media (environment map/photo/video/etc.) available in multiple resolutions. How do I work out what resolution will be effective for the device that is rendering the layer? Similar to issue #224, I need to pump a frame to find out views and work out a field of view from that; and I guess I need to create a projection layer, and fetch the subimage to work out its width and height, and throw that layer away to then calculate pixels per degree and pick media based on that.

That seems like a lot of work for what I think is a pretty common use case. In 2D media we have srcset, source and media queries for selecting media and, worst case, clientWidth/clientHeight and devicePixelRatio I can work out the size of a video element and pick suitable media. But if I take that same video and put it on a quad layer I need to specify pixel sizes and break that whole pipeline.

I have a few ideas how this might be improved:

  • For video specifically, the video element already has <source>, srcset, etc. Why can't that just continue to operate when the video is bound to a layer?
  • For everything else, it would be nice if I did not have to render them with WebGL. For example, say I want to put an img or SVG image on a quad. These already have some resolution independence, source selection, etc. so it would be nice if XRMediaBinding accepted CanvasImageSource. Yes, no doubt there's some spec work. For example to fetch the right image from the srcset means the layer content will update at some point. But video can advance frames, so why not?
  • For exceptional cases, maybe I'm rendering some exotic media (say PDF) with WebGL or canvas, sure, makes sense to have an explicit view pixel size to target rendering to. In that case it should be easy to work out a "good" target size.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions