nir: Fix a comment typo in nir_lower_drawpixels.

Reviewed-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
Eric Anholt 2016-08-19 15:37:52 -07:00
parent f4d143f0d9
commit 0a8ff1681b
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ lower_drawpixels_block(lower_drawpixels_state *state, nir_block *block)
nir_variable *var = dvar->var;
if (var->data.location == VARYING_SLOT_COL0) {
/* gl_FragCoord should not have array/struct deref's: */
/* gl_Color should not have array/struct deref's: */
assert(dvar->deref.child == NULL);
lower_color(state, intr);
} else if (var->data.location == VARYING_SLOT_TEX0) {