Fix position output hint.

This commit is contained in:
2024-09-11 12:42:59 +02:00
parent 5b237d34de
commit 6eba51cc8c
2 changed files with 24 additions and 0 deletions

View File

@@ -122,12 +122,25 @@ Constant_Buffer :: struct {
buffer_index : u32;
}
Texture :: struct {
register : int;
}
Sampler_State :: struct {
register : int;
}
Shader_Variant_Collection :: struct {
properties : Properties;
max_constant_buffers :: 16;
cbuffers : Static_Array(Constant_Buffer, max_constant_buffers);
max_textures :: 16;
textures : Static_Array(Texture, max_textures);
max_sampler_states :: 16;
sampler_states : Static_Array(Sampler_State, max_sampler_states);
variants : [..]Shader_Variant;
}