Fix sp shader debug handling
This commit is contained in:
parent
91e1bd3fd1
commit
611def3c04
@ -227,22 +227,27 @@ void SPShader::addAllUniforms(RenderPass rp)
|
|||||||
GLenum type;
|
GLenum type;
|
||||||
char name[100] = {};
|
char name[100] = {};
|
||||||
glGetActiveUniform(m_program[rp], i, 99, NULL, &size, &type, name);
|
glGetActiveUniform(m_program[rp], i, 99, NULL, &size, &type, name);
|
||||||
if (size != 1 && m_sp_shader_debug)
|
if (size != 1)
|
||||||
{
|
{
|
||||||
Log::debug("SPShader", "Array of uniforms is not supported in"
|
if (m_sp_shader_debug)
|
||||||
" shader %s for %s.", m_name.c_str(), name);
|
{
|
||||||
|
Log::debug("SPShader", "Array of uniforms is not supported in"
|
||||||
|
" shader %s for %s.", m_name.c_str(), name);
|
||||||
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
auto ret = supported_types.find(type);
|
auto ret = supported_types.find(type);
|
||||||
if (ret == supported_types.end() && m_sp_shader_debug)
|
if (ret == supported_types.end())
|
||||||
{
|
{
|
||||||
Log::debug("SPShader", "%d type not supported", (unsigned)type);
|
if (m_sp_shader_debug)
|
||||||
|
Log::debug("SPShader", "%d type not supported", (unsigned)type);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
GLuint location = glGetUniformLocation(m_program[rp], name);
|
GLuint location = glGetUniformLocation(m_program[rp], name);
|
||||||
if (location == GL_INVALID_INDEX && m_sp_shader_debug)
|
if (location == GL_INVALID_INDEX)
|
||||||
{
|
{
|
||||||
Log::debug("SPShader", "%s uniform not found", name);
|
if (m_sp_shader_debug)
|
||||||
|
Log::debug("SPShader", "%s uniform not found", name);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
m_uniforms[rp][name] = new SPUniformAssigner(ret->second, location);
|
m_uniforms[rp][name] = new SPUniformAssigner(ret->second, location);
|
||||||
|
Loading…
Reference in New Issue
Block a user