From e55de6e20cb8854be0af8afd50eea12f84ff9d49 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 7 Feb 2018 16:12:59 -0700 Subject: [PATCH] st/mesa: s/unsigned/enum tgsi_semantic/ st_cb_drawpixels.c MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Mathias Fröhlich Reviewed-by: Roland Scheidegger --- src/mesa/state_tracker/st_cb_drawpixels.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/state_tracker/st_cb_drawpixels.c b/src/mesa/state_tracker/st_cb_drawpixels.c index 44f5b235c83..ddf69263328 100644 --- a/src/mesa/state_tracker/st_cb_drawpixels.c +++ b/src/mesa/state_tracker/st_cb_drawpixels.c @@ -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]) { -- 2.30.2