mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-11 20:07:47 +00:00
GL_State: Feedback and fixes
This commit is contained in:
parent
527a77ec0a
commit
c9690e912e
4 changed files with 27 additions and 14 deletions
|
@ -1129,24 +1129,30 @@ public:
|
|||
union {
|
||||
struct {
|
||||
bool null_dirty;
|
||||
|
||||
// Vertex Attributes
|
||||
bool vertex_attrib_format;
|
||||
|
||||
// Vertex Arrays
|
||||
std::array<bool, 32> vertex_array;
|
||||
|
||||
bool vertex_array_buffers;
|
||||
|
||||
// Vertex Instances
|
||||
std::array<bool, 32> vertex_instance;
|
||||
|
||||
bool vertex_instances;
|
||||
|
||||
// Render Targets
|
||||
std::array<bool, 8> render_target;
|
||||
bool depth_buffer;
|
||||
|
||||
bool render_settings;
|
||||
|
||||
// Shaders
|
||||
bool shaders;
|
||||
// State
|
||||
|
||||
// Rasterizer State
|
||||
bool viewport;
|
||||
bool clip_coefficient;
|
||||
bool cull_mode;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue