mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 15:31:26 +12:00
format fix
This commit is contained in:
parent
b81e0f9e4c
commit
06907cb942
1 changed files with 4 additions and 1 deletions
|
@ -670,7 +670,10 @@ void GLShaderProgram::DecompileAsync(RSXShaderProgram& prog)
|
||||||
|
|
||||||
void GLShaderProgram::Compile()
|
void GLShaderProgram::Compile()
|
||||||
{
|
{
|
||||||
if (m_id) glDeleteShader(m_id);
|
if (m_id)
|
||||||
|
{
|
||||||
|
glDeleteShader(m_id);
|
||||||
|
}
|
||||||
|
|
||||||
m_id = glCreateShader(GL_FRAGMENT_SHADER);
|
m_id = glCreateShader(GL_FRAGMENT_SHADER);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue