mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 22:53:32 +02:00
Merge pull request #14257 from jherico/fix/uniforms_again
Bug 19488: Fix access to uniforms at index 0
This commit is contained in:
commit
dc150add71
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ using namespace gl;
|
|||
|
||||
void Uniform::load(GLuint glprogram, int index) {
|
||||
this->index = index;
|
||||
if (index > 0) {
|
||||
if (index >= 0) {
|
||||
static const GLint NAME_LENGTH = 1024;
|
||||
GLchar glname[NAME_LENGTH];
|
||||
memset(glname, 0, NAME_LENGTH);
|
||||
|
|
Loading…
Reference in a new issue