This commit is contained in:
HifiExperiments 2021-03-03 18:58:09 -08:00
parent 68c20ce73d
commit 1abb408a93
3 changed files with 3 additions and 3 deletions

View file

@ -228,7 +228,7 @@ void GLBackend::updateInput() {
}
if (!hasColorAttribute && _input._hadColorAttribute) {
// The last stage had a color attribute but this one doens't, so reset the color to pure white.
// The previous input stage had a color attribute but this one doesn't, so reset the color to pure white.
_input._colorAttribute = glm::vec4(1.0f);
glVertexAttrib4fv(Stream::COLOR, &_input._colorAttribute.r);
}

View file

@ -133,7 +133,7 @@ void GL41Backend::updateInput() {
}
if (!hasColorAttribute && _input._hadColorAttribute) {
// The last stage had a color attribute but this one doens't, so reset the color to pure white.
// The previous input stage had a color attribute but this one doesn't, so reset the color to pure white.
_input._colorAttribute = glm::vec4(1.0f);
glVertexAttrib4fv(Stream::COLOR, &_input._colorAttribute.r);
}

View file

@ -100,7 +100,7 @@ void GL45Backend::updateInput() {
}
if (!hasColorAttribute && _input._hadColorAttribute) {
// The last stage had a color attribute but this one doens't, so reset the color to pure white.
// The previous input stage had a color attribute but this one doesn't, so reset the color to pure white.
_input._colorAttribute = glm::vec4(1.0f);
glVertexAttrib4fv(Stream::COLOR, &_input._colorAttribute.r);
}