Remove cull/front face

This commit is contained in:
Vincent Lejeune 2015-10-10 19:04:09 +02:00
parent dd1afe85ae
commit e086b7a522
6 changed files with 27 additions and 41 deletions

View file

@ -574,26 +574,17 @@ void RSXThread::DoCmd(const u32 fcmd, const u32 cmd, const u32 args_addr, const
// Cull face
case NV4097_SET_CULL_FACE_ENABLE:
{
m_set_cull_face = ARGS(0) ? true : false;
notifyRasterizerStateChange();
break;
}
case NV4097_SET_CULL_FACE:
{
m_cull_face = ARGS(0);
notifyRasterizerStateChange();
break;
}
// Front face
case NV4097_SET_FRONT_FACE:
{
m_front_face = ARGS(0);
notifyRasterizerStateChange();
break;
}
// Blending
case NV4097_SET_BLEND_ENABLE: