From fca325b761dac4ec4b40682730c64150a38fc2d2 Mon Sep 17 00:00:00 2001 From: Niels Bross Date: Thu, 12 Sep 2024 07:18:27 +0200 Subject: [PATCH] Deleted some stuff --- module.jai | 13 ------------- 1 file changed, 13 deletions(-) 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; }