mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-09-30 13:19:06 +00:00
formatting
This commit is contained in:
parent
fdfcc6c5ea
commit
6981cbb985
1 changed files with 14 additions and 13 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue