Enable GL_SCISSOR_TEST and add glLogicOp

This commit is contained in:
raven02 2014-05-21 17:55:44 +08:00
parent ec53f2557a
commit 967935d389
3 changed files with 32 additions and 19 deletions

View file

@ -762,6 +762,10 @@ void RSXThread::DoCmd(const u32 fcmd, const u32 cmd, mem32_ptr_t& args, const u3
m_set_logic_op = ARGS(0) ? true : false;
break;
case NV4097_SET_LOGIC_OP:
m_logic_op = ARGS(0);
break;
case NV4097_SET_CULL_FACE_ENABLE:
m_set_cull_face_enable = ARGS(0) ? true : false;
break;