mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00:00
OGLShader: Fix mismatched assignment in compute shader constructor
This shouldn't be assigning to the regular ID.
This commit is contained in:
parent
917f0e2182
commit
83f17ac59f
1 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,8 @@ OGLShader::OGLShader(ShaderStage stage, GLenum gl_type, GLuint shader_id)
|
||||||
}
|
}
|
||||||
|
|
||||||
OGLShader::OGLShader(GLuint compute_program_id)
|
OGLShader::OGLShader(GLuint compute_program_id)
|
||||||
: AbstractShader(ShaderStage::Compute), m_type(GL_COMPUTE_SHADER), m_id(compute_program_id)
|
: AbstractShader(ShaderStage::Compute), m_type(GL_COMPUTE_SHADER),
|
||||||
|
m_compute_program_id(compute_program_id)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue