Browse Source
Merge pull request #1167 from lioncash/assert
gl_rasterizer: Correct assertion condition in SyncLogicOpState()
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/video_core/renderer_opengl/gl_rasterizer.cpp
|
|
|
@ -929,7 +929,8 @@ void RasterizerOpenGL::SyncLogicOpState() { |
|
|
|
if (!state.logic_op.enabled) |
|
|
|
return; |
|
|
|
|
|
|
|
ASSERT_MSG(regs.blend.enable == 0, "Blending and logic op can't be enabled at the same time."); |
|
|
|
ASSERT_MSG(regs.blend.enable[0] == 0, |
|
|
|
"Blending and logic op can't be enabled at the same time."); |
|
|
|
|
|
|
|
state.logic_op.operation = MaxwellToGL::LogicOp(regs.logic_op.operation); |
|
|
|
} |
|
|
|
|