From e0f89beb7dcbb420a29a713dd9472d8e5b3675c7 Mon Sep 17 00:00:00 2001 From: raven02 Date: Wed, 21 May 2014 02:08:49 +0800 Subject: [PATCH] Set default polygon_mode as GL_FILL --- rpcs3/Emu/GS/RSXThread.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rpcs3/Emu/GS/RSXThread.h b/rpcs3/Emu/GS/RSXThread.h index 8525193110..7d1e503882 100644 --- a/rpcs3/Emu/GS/RSXThread.h +++ b/rpcs3/Emu/GS/RSXThread.h @@ -430,6 +430,9 @@ protected: m_depth_bounds_max = 1.0; m_restart_index = 0xffffffff; + m_front_polygon_mode = 0x1B02; // GL_FILL + m_back_polygon_mode = 0x1B02; // GL_FILL + m_point_x = 0; m_point_y = 0; @@ -457,6 +460,7 @@ protected: m_set_scissor_horizontal = false; m_set_scissor_vertical = false; m_set_front_polygon_mode = false; + m_set_back_polygon_mode = false; m_set_blend_sfactor = false; m_set_blend_dfactor = false; m_set_stencil_mask = false;