Skip to content
#

rasterizer

Here are 165 public repositories matching this topic...

OmarShehata
OmarShehata commented Dec 11, 2021

Right now the compute rasterizer only supports a simple list of triangles. It would be a good exercise to add support for an index buffer to support more complex models without using too much memory. You'll need to:

  • Create another buffer, similar to the vertex buffer, that holds indices into the vertex buffer, and send that to the compute shader
  • Change how many times the compute dispatches
good first issue

Improve this page

Add a description, image, and links to the rasterizer topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the rasterizer topic, visit your repo's landing page and select "manage topics."

Learn more