diff --git a/module.jai b/module.jai index dd45541..1592a02 100644 --- a/module.jai +++ b/module.jai @@ -123,25 +123,12 @@ 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; }