mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
format fix
This commit is contained in:
parent
51c107656f
commit
24a19a0dd9
1 changed files with 4 additions and 1 deletions
|
@ -822,7 +822,10 @@ void GLVertexProgram::DecompileAsync(RSXVertexProgram& prog)
|
||||||
|
|
||||||
void GLVertexProgram::Compile()
|
void GLVertexProgram::Compile()
|
||||||
{
|
{
|
||||||
if (id) glDeleteShader(id);
|
if (id)
|
||||||
|
{
|
||||||
|
glDeleteShader(id);
|
||||||
|
}
|
||||||
|
|
||||||
id = glCreateShader(GL_VERTEX_SHADER);
|
id = glCreateShader(GL_VERTEX_SHADER);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue