formatting

This commit is contained in:
kd-11 2023-04-19 03:44:39 +03:00 committed by kd-11
commit 6981cbb985

View file

@ -37,26 +37,27 @@ namespace gl
struct struct
{ {
f32 value = 0; f32 value;
} }
clear_depth; clear_depth{};
struct struct
{ {
u8 mask = 0; u8 mask;
u8 value = 0; u8 value;
} }
clear_stencil; clear_stencil{};
struct { struct
u32 mask = 0; {
u8 attachment_count = 0; u32 mask;
u8 r = 0; u8 attachment_count;
u8 g = 0; u8 r;
u8 b = 0; u8 g;
u8 a = 0; u8 b;
u8 a;
} }
clear_color; clear_color{};
}; };
GLenum get_target(rsx::texture_dimension_extended type); GLenum get_target(rsx::texture_dimension_extended type);