meta: Bump raylib/raygui
This commit is contained in:
parent
01b6e1a2e2
commit
a2397363aa
14 changed files with 250 additions and 97 deletions
|
|
@ -127,6 +127,8 @@ pub const GuiComboBoxProperty = enum(c_int) {
|
|||
pub const GuiDropdownBoxProperty = enum(c_int) {
|
||||
arrow_padding = 16,
|
||||
dropdown_items_spacing,
|
||||
dropdown_arrow_hidden,
|
||||
dropdown_roll_up,
|
||||
};
|
||||
|
||||
pub const GuiTextBoxProperty = enum(c_int) {
|
||||
|
|
@ -143,6 +145,7 @@ pub const GuiListViewProperty = enum(c_int) {
|
|||
list_items_spacing,
|
||||
scrollbar_width,
|
||||
scrollbar_side,
|
||||
list_items_border_width,
|
||||
};
|
||||
|
||||
pub const GuiColorPickerProperty = enum(c_int) {
|
||||
|
|
|
|||
|
|
@ -1379,8 +1379,8 @@ pub const Mesh = extern struct {
|
|||
animNormals: [*c]f32,
|
||||
boneIds: [*c]u8,
|
||||
boneWeights: [*c]f32,
|
||||
vaoId: c_uint,
|
||||
vboId: [*c]c_uint,
|
||||
boneMatrices: [*c]Matrix,
|
||||
boneCount: c_int,
|
||||
|
||||
/// Draw a 3d mesh with material and transform
|
||||
pub fn draw(self: Mesh, material: Material, transform: Matrix) void {
|
||||
|
|
@ -1827,6 +1827,9 @@ pub const ShaderLocationIndex = enum(c_int) {
|
|||
shader_loc_map_irradiance = 23,
|
||||
shader_loc_map_prefilter = 24,
|
||||
shader_loc_map_brdf = 25,
|
||||
shader_loc_vertex_boneids = 26,
|
||||
shader_loc_vertex_boneweights = 27,
|
||||
shader_loc_bone_matrices = 28
|
||||
};
|
||||
|
||||
pub const ShaderUniformDataType = enum(c_int) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue