quakeforge/libs/video/renderer/vulkan/shader/entity.h
Bill Currie a08261c620 [vulkan] Use a buffer for entity transform and color data
This allows the use of an entity id to index into the entity data and
fetch the transform and colormod data in the vertex shader, thus making
instanced rendering possible. Non-world brush entities are still not
rendered, but the world entity is using both the entity data buffer and
entid buffer.
2022-05-25 00:17:57 +09:00

4 lines
63 B
C

struct Entity {
mat3x4 transform;
vec4 color;
};