Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
GH Action committed Apr 13, 2024
1 parent d7fe3ad commit 2584915
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 24 deletions.
2 changes: 0 additions & 2 deletions sokol/app/app.odin
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ Event_Type :: enum i32 {
QUIT_REQUESTED,
CLIPBOARD_PASTED,
FILES_DROPPED,
NUM,
}
Keycode :: enum i32 {
INVALID = 0,
Expand Down Expand Up @@ -495,5 +494,4 @@ Mouse_Cursor :: enum i32 {
RESIZE_NESW,
RESIZE_ALL,
NOT_ALLOWED,
NUM,
}
22 changes: 0 additions & 22 deletions sokol/gfx/gfx.odin
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,6 @@ Pixel_Format :: enum i32 {
ETC2_RG11SN,
ASTC_4x4_RGBA,
ASTC_4x4_SRGBA,
NUM,
}
Pixelformat_Info :: struct {
sample : bool,
Expand Down Expand Up @@ -330,28 +329,24 @@ Usage :: enum i32 {
IMMUTABLE,
DYNAMIC,
STREAM,
NUM,
}
Buffer_Type :: enum i32 {
DEFAULT,
VERTEXBUFFER,
INDEXBUFFER,
NUM,
}
Index_Type :: enum i32 {
DEFAULT,
NONE,
UINT16,
UINT32,
NUM,
}
Image_Type :: enum i32 {
DEFAULT,
_2D,
CUBE,
_3D,
ARRAY,
NUM,
}
Image_Sample_Type :: enum i32 {
DEFAULT,
Expand All @@ -360,14 +355,12 @@ Image_Sample_Type :: enum i32 {
SINT,
UINT,
UNFILTERABLE_FLOAT,
NUM,
}
Sampler_Type :: enum i32 {
DEFAULT,
FILTERING,
NONFILTERING,
COMPARISON,
NUM,
}
Cube_Face :: enum i32 {
POS_X,
Expand All @@ -376,7 +369,6 @@ Cube_Face :: enum i32 {
NEG_Y,
POS_Z,
NEG_Z,
NUM,
}
Shader_Stage :: enum i32 {
VS,
Expand All @@ -389,29 +381,25 @@ Primitive_Type :: enum i32 {
LINE_STRIP,
TRIANGLES,
TRIANGLE_STRIP,
NUM,
}
Filter :: enum i32 {
DEFAULT,
NONE,
NEAREST,
LINEAR,
NUM,
}
Wrap :: enum i32 {
DEFAULT,
REPEAT,
CLAMP_TO_EDGE,
CLAMP_TO_BORDER,
MIRRORED_REPEAT,
NUM,
}
Border_Color :: enum i32 {
DEFAULT,
TRANSPARENT_BLACK,
OPAQUE_BLACK,
OPAQUE_WHITE,
NUM,
}
Vertex_Format :: enum i32 {
INVALID,
Expand All @@ -432,13 +420,11 @@ Vertex_Format :: enum i32 {
UINT10_N2,
HALF2,
HALF4,
NUM,
}
Vertex_Step :: enum i32 {
DEFAULT,
PER_VERTEX,
PER_INSTANCE,
NUM,
}
Uniform_Type :: enum i32 {
INVALID,
Expand All @@ -451,26 +437,22 @@ Uniform_Type :: enum i32 {
INT3,
INT4,
MAT4,
NUM,
}
Uniform_Layout :: enum i32 {
DEFAULT,
NATIVE,
STD140,
NUM,
}
Cull_Mode :: enum i32 {
DEFAULT,
NONE,
FRONT,
BACK,
NUM,
}
Face_Winding :: enum i32 {
DEFAULT,
CCW,
CW,
NUM,
}
Compare_Func :: enum i32 {
DEFAULT,
Expand All @@ -482,7 +464,6 @@ Compare_Func :: enum i32 {
NOT_EQUAL,
GREATER_EQUAL,
ALWAYS,
NUM,
}
Stencil_Op :: enum i32 {
DEFAULT,
Expand All @@ -494,7 +475,6 @@ Stencil_Op :: enum i32 {
INVERT,
INCR_WRAP,
DECR_WRAP,
NUM,
}
Blend_Factor :: enum i32 {
DEFAULT,
Expand All @@ -513,14 +493,12 @@ Blend_Factor :: enum i32 {
ONE_MINUS_BLEND_COLOR,
BLEND_ALPHA,
ONE_MINUS_BLEND_ALPHA,
NUM,
}
Blend_Op :: enum i32 {
DEFAULT,
ADD,
SUBTRACT,
REVERSE_SUBTRACT,
NUM,
}
Color_Mask :: enum i32 {
DEFAULT = 0,
Expand Down

0 comments on commit 2584915

Please sign in to comment.