Protected
attachedThe camera to use for rendering.
Readonly
onEvent that is triggered when an asynchronous error occurs.
Readonly
onEvent that is triggered when rendering become ready (context and device are available).
Returns whether the rendering is currently ready.
Sets + emit whether the rendering is currently ready.
Gets the presentation texture format.
The presentation texture format.
The current screen size.
Creates a bind group.
The bind group layout to use.
The entries for the bind group.
The created bind group.
Creates a bind group layout.
The descriptor for the bind group layout.
The created bind group layout.
Creates an index buffer.
The data to initialize the buffer with.
The created index buffer.
Creates a render pipeline asynchronously.
The vertex shader code in WGSL.
The fragment shader code in WGSL.
The primitive state configuration.
The bind group layouts for the pipeline.
Optional
buffers: Iterable<null | GPUVertexBufferLayout, any, any>The vertex buffer layouts (optional).
Optional
targetBlend: GPUBlendStateThe blend state for the pipeline (optional).
The created render pipeline.
Creates a render bundle encoder.
The descriptor for the render bundle encoder.
The created render bundle encoder.
Creates a sampler.
The descriptor for the sampler.
The created sampler.
Creates a storage buffer.
The size of the buffer in bytes.
The label for the buffer (optional).
The created storage buffer.
Creates a texture from an image URL.
The URL of the image to load.
A promise that resolves to the created texture.
Creates a uniform buffer and fills it with data.
The data to initialize the buffer with.
The created uniform buffer.
Creates a vertex buffer.
The data to initialize the buffer with.
The created vertex buffer.
Fills a uniform buffer with data.
The buffer to fill.
The data to write to the buffer.
A unique game engine component responsible for rendering the game using WebGPU. This is the main component used to render the game so it has a lot of responsibilities (camera, lifecycle, webgpu resources, etc). For these reasons, it acts like a facade for the WebGPU resources and delegate some responsibilities to the WebGPUResourceManager.