From 29d0b1443ec86798f8ff08e1facc03bf47c10ad0 Mon Sep 17 00:00:00 2001 From: raven02 Date: Mon, 26 May 2014 00:05:07 +0800 Subject: [PATCH] Add Primitve restart & scissor test --- rpcs3/Gui/RSXDebugger.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rpcs3/Gui/RSXDebugger.cpp b/rpcs3/Gui/RSXDebugger.cpp index cdc5b31e50..7fbdfc3e5d 100644 --- a/rpcs3/Gui/RSXDebugger.cpp +++ b/rpcs3/Gui/RSXDebugger.cpp @@ -483,6 +483,7 @@ void RSXDebugger::GetFlags() LIST_FLAGS_ADD("Alpha test", render.m_set_alpha_test); LIST_FLAGS_ADD("Blend", render.m_set_blend); + LIST_FLAGS_ADD("Scissor", render.m_set_scissor_horizontal && render.m_set_scissor_vertical); LIST_FLAGS_ADD("Cull face", render.m_set_cull_face_enable); LIST_FLAGS_ADD("Depth bounds test", render.m_set_depth_bounds_test); LIST_FLAGS_ADD("Depth test", render.m_depth_test_enable); @@ -494,6 +495,7 @@ void RSXDebugger::GetFlags() LIST_FLAGS_ADD("Poly offset line", render.m_set_poly_offset_line); LIST_FLAGS_ADD("Poly offset point", render.m_set_poly_offset_point); LIST_FLAGS_ADD("Stencil test", render.m_set_stencil_test); + LIST_FLAGS_ADD("Primitive restart", render.m_set_restart_index); #undef LIST_FLAGS_ADD }