Update readme

This commit is contained in:
2025-09-14 20:21:43 +02:00
parent d5476b54d7
commit f99f86bc37
2 changed files with 41 additions and 59 deletions

View File

@@ -81,22 +81,6 @@ Entry_Point :: struct {
return_value : Field;
}
Shader_Variant :: struct {
text : string;
vertex_entry_point : struct {
name : string;
input : [..]Field;
}
pixel_entry_point : struct {
name : string;
return_value : Field;
}
}
Property_Field :: struct {
base_field : Field;
@@ -111,8 +95,6 @@ Properties :: struct {
}
Constant_Buffer :: struct {
register : int;
name : string;
fields : Static_Array(Property_Field, 16);
@@ -167,7 +149,7 @@ Compiler_Context :: struct {
return_value : Field;
}
properties : Properties;
properties : Properties; //@Note(niels): We'll deprecate this in favor of just marking a constant buffer how you'd want to use it
max_constant_buffers :: 16;