Merge pull request #2579 from ReinUsesLisp/fix-aoffi-test
gl_device: Fix TestVariableAoffi test
This commit is contained in:
commit
a9f3c54871
1 changed files with 2 additions and 1 deletions
|
@ -43,8 +43,9 @@ bool Device::TestVariableAoffi() {
|
||||||
// This is a unit test, please ignore me on apitrace bug reports.
|
// This is a unit test, please ignore me on apitrace bug reports.
|
||||||
uniform sampler2D tex;
|
uniform sampler2D tex;
|
||||||
uniform ivec2 variable_offset;
|
uniform ivec2 variable_offset;
|
||||||
|
out vec4 output_attribute;
|
||||||
void main() {
|
void main() {
|
||||||
gl_Position = textureOffset(tex, vec2(0), variable_offset);
|
output_attribute = textureOffset(tex, vec2(0), variable_offset);
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
const GLuint shader{glCreateShaderProgramv(GL_VERTEX_SHADER, 1, &AOFFI_TEST)};
|
const GLuint shader{glCreateShaderProgramv(GL_VERTEX_SHADER, 1, &AOFFI_TEST)};
|
||||||
|
|
Loading…
Reference in a new issue