Options
All
  • Public
  • Public/Protected
  • All
Menu

Class WgRendCollisionShader

The collision rendering shader.

Takes as input the buffer containing the positions of the collision elements (in our case, probably atoms, maybe something else too in the future - 22/08/2022). Each element will be treated as an INSTANCE and will be drawn using quad VERTICES (4 triangle-strip vertices).

Takes as input also the collisions buffer, a U32 buffer where each bit encodes an element/atom. 0 means this element does not collide with any other element. 1 means it does.

This class also creates and manages the uniforms buffer, taking its parameters in the constructor and in setUniforms()

The elements/atoms that do collide will be drawn. The ones that don't, will not.

Hierarchy

Index

Constructors

constructor

Properties

Private Readonly _target

Private Readonly quadOffsets

quadOffsets: WgBuffer<Float32Array>

Private Readonly uniforms

uniforms: WgBuffer<Float32Array>

Private uniformsArray

uniformsArray: Float32Array

Private Readonly vertices

vertices: WgBuffer<Float32Array>

Accessors

bindGroups

  • get bindGroups(): { bindGroup: GPUBindGroup; index: number }[]

instanceCount

  • get instanceCount(): number

pipeline

  • get pipeline(): GPURenderPipeline

vertexBuffers

  • get vertexBuffers(): keyof { buffer: WgBuffer<any>; slot: number }[]

vertexCount

  • get vertexCount(): number

view

  • get view(): GPUTextureView

Methods

dispose

  • dispose(): void

setUniforms

Static Private createUniforms

Generated using TypeDoc