st/mesa: s/unsigned/enum tgsi_semantic/ st_cb_drawpixels.c

Reviewed-by: Mathias Fröhlich <mathias.froehlich@web.de>
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
This commit is contained in:
Brian Paul
2018-02-07 16:12:59 -07:00
parent b9ff185e41
commit e55de6e20c
+1 -1
View File
@@ -196,7 +196,7 @@ static void *
make_passthrough_vertex_shader(struct st_context *st,
GLboolean passColor)
{
const unsigned texcoord_semantic = st->needs_texcoord_semantic ?
const enum tgsi_semantic texcoord_semantic = st->needs_texcoord_semantic ?
TGSI_SEMANTIC_TEXCOORD : TGSI_SEMANTIC_GENERIC;
if (!st->drawpix.vert_shaders[passColor]) {