This commit is contained in:
Dario Manesku 2013-10-20 21:09:31 +01:00
parent 19f36716f7
commit cd31dbfb13

View file

@ -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];