mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 09:23:22 +02:00
type
This commit is contained in:
parent
68c20ce73d
commit
1abb408a93
3 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue