Update raylib to version 5.5 (#174)
This commit is contained in:
parent
90109ff804
commit
ff775330c7
12 changed files with 677 additions and 201 deletions
|
|
@ -38,7 +38,14 @@ pub const rlRenderBatch = extern struct {
|
|||
currentDepth: f32,
|
||||
};
|
||||
|
||||
pub const rlGlVersion = enum(c_int) { rl_opengl_11 = 1, rl_opengl_21 = 2, rl_opengl_33 = 3, rl_opengl_43 = 4, rl_opengl_es_20 = 5, rl_opengl_es_30 = 6 };
|
||||
pub const rlGlVersion = enum(c_int) {
|
||||
rl_opengl_11 = 1,
|
||||
rl_opengl_21 = 2,
|
||||
rl_opengl_33 = 3,
|
||||
rl_opengl_43 = 4,
|
||||
rl_opengl_es_20 = 5,
|
||||
rl_opengl_es_30 = 6,
|
||||
};
|
||||
|
||||
pub const rlTraceLogLevel = enum(c_int) {
|
||||
rl_log_all = 0,
|
||||
|
|
@ -143,7 +150,12 @@ pub const rlShaderUniformDataType = enum(c_uint) {
|
|||
rl_shader_uniform_sampler2d = 12,
|
||||
};
|
||||
|
||||
pub const rlShaderAttributeDataType = enum(c_uint) { rl_shader_attrib_float = 0, rl_shader_attrib_vec2 = 1, rl_shader_attrib_vec3 = 2, rl_shader_attrib_vec4 = 3 };
|
||||
pub const rlShaderAttributeDataType = enum(c_uint) {
|
||||
rl_shader_attrib_float = 0,
|
||||
rl_shader_attrib_vec2 = 1,
|
||||
rl_shader_attrib_vec3 = 2,
|
||||
rl_shader_attrib_vec4 = 3,
|
||||
};
|
||||
|
||||
pub const rlFramebufferAttachType = enum(c_uint) {
|
||||
rl_attachment_color_channel0 = 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue