Browse Source

gl_state_tracker: Implement dirty flags for depth clamp enabling

pull/15/merge
ReinUsesLisp 6 years ago
parent
commit
2eeea90713
  1. 12
      src/video_core/renderer_opengl/gl_rasterizer.cpp
  2. 5
      src/video_core/renderer_opengl/gl_state_tracker.cpp
  3. 1
      src/video_core/renderer_opengl/gl_state_tracker.h

12
src/video_core/renderer_opengl/gl_rasterizer.cpp

@ -493,6 +493,7 @@ void RasterizerOpenGL::Draw(bool is_indexed, bool is_instanced) {
SyncFragmentColorClampState(); SyncFragmentColorClampState();
SyncMultiSampleState(); SyncMultiSampleState();
SyncDepthTestState(); SyncDepthTestState();
SyncDepthClamp();
SyncStencilTestState(); SyncStencilTestState();
SyncBlendState(); SyncBlendState();
SyncLogicOpState(); SyncLogicOpState();
@ -967,11 +968,16 @@ void RasterizerOpenGL::SyncViewport() {
} }
void RasterizerOpenGL::SyncDepthClamp() { void RasterizerOpenGL::SyncDepthClamp() {
const auto& regs = system.GPU().Maxwell3D().regs;
const auto& state = regs.view_volume_clip_control;
auto& gpu = system.GPU().Maxwell3D();
auto& flags = gpu.dirty.flags;
if (!flags[Dirty::DepthClampEnabled]) {
return;
}
flags[Dirty::DepthClampEnabled] = false;
const auto& state = gpu.regs.view_volume_clip_control;
UNIMPLEMENTED_IF_MSG(state.depth_clamp_far != state.depth_clamp_near, UNIMPLEMENTED_IF_MSG(state.depth_clamp_far != state.depth_clamp_near,
"Unimplemented Depth clamp separation!");
"Unimplemented depth clamp separation!");
oglEnable(GL_DEPTH_CLAMP, state.depth_clamp_far || state.depth_clamp_near); oglEnable(GL_DEPTH_CLAMP, state.depth_clamp_far || state.depth_clamp_near);
} }

5
src/video_core/renderer_opengl/gl_state_tracker.cpp

@ -217,6 +217,10 @@ void SetupDirtyClipControl(Tables& tables) {
table[OFF(depth_mode)] = ClipControl; table[OFF(depth_mode)] = ClipControl;
} }
void SetupDirtyDepthClampEnabled(Tables& tables) {
tables[0][OFF(view_volume_clip_control)] = DepthClampEnabled;
}
void SetupDirtyMisc(Tables& tables) { void SetupDirtyMisc(Tables& tables) {
auto& table = tables[0]; auto& table = tables[0];
@ -255,6 +259,7 @@ void StateTracker::Initialize() {
SetupDirtyFragmentClampColor(tables); SetupDirtyFragmentClampColor(tables);
SetupDirtyPointSize(tables); SetupDirtyPointSize(tables);
SetupDirtyClipControl(tables); SetupDirtyClipControl(tables);
SetupDirtyDepthClampEnabled(tables);
SetupDirtyMisc(tables); SetupDirtyMisc(tables);
auto& store = dirty.on_write_stores; auto& store = dirty.on_write_stores;

1
src/video_core/renderer_opengl/gl_state_tracker.h

@ -75,6 +75,7 @@ enum : u8 {
FragmentClampColor, FragmentClampColor,
PointSize, PointSize,
ClipControl, ClipControl,
DepthClampEnabled,
Last Last
}; };

Loading…
Cancel
Save