Merge pull request #14257 from jherico/fix/uniforms_again

Bug 19488:  Fix access to uniforms at index 0
This commit is contained in:
Sam Gateau 2018-10-23 10:00:51 -07:00 committed by GitHub
commit dc150add71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);