Dario Manesku 12 years ago
parent
commit
cd31dbfb13
1 changed files with 9 additions and 8 deletions
  1. 9 8
      examples/13-stencil/stencil.cpp

+ 9 - 8
examples/13-stencil/stencil.cpp

@@ -326,10 +326,6 @@ void mtxBillboard(float* __restrict _result
 	_result[15] = 1.0f;
 	_result[15] = 1.0f;
 }
 }
 
 
-//-------------------------------------------------
-// Uniforms
-//-------------------------------------------------
-
 struct Uniforms
 struct Uniforms
 {
 {
 	void init()
 	void init()
@@ -418,20 +414,25 @@ struct Uniforms
 		bgfx::destroyUniform(u_lightRgbInnerR);
 		bgfx::destroyUniform(u_lightRgbInnerR);
 	}
 	}
 
 
-	struct
+	struct Params
 	{
 	{
 		float m_ambientPass;
 		float m_ambientPass;
 		float m_lightningPass;
 		float m_lightningPass;
 		float m_lightCount;
 		float m_lightCount;
 		float m_lightIndex;
 		float m_lightIndex;
-	} m_params;
-	struct
+	};
+
+	struct SvParams
 	{
 	{
 		float m_useStencilTex;
 		float m_useStencilTex;
 		float m_dfail;
 		float m_dfail;
 		float m_unused0;
 		float m_unused0;
 		float m_unused1;
 		float m_unused1;
-	} m_svparams;
+	};
+
+
+	Params m_params;
+	SvParams m_svparams;
 	float m_ambient[4];
 	float m_ambient[4];
 	float m_diffuse[4];
 	float m_diffuse[4];
 	float m_specular_shininess[4];
 	float m_specular_shininess[4];