From: Brian Date: Wed, 10 Oct 2007 23:50:31 +0000 (-0600) Subject: added SSCALED cases in fetch_attrib4() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3f226d4bafcc7b174ee42e4b5a2a4fb3756758ad;p=mesa.git added SSCALED cases in fetch_attrib4() --- diff --git a/src/mesa/pipe/draw/draw_vertex_fetch.c b/src/mesa/pipe/draw/draw_vertex_fetch.c index bc37e18c341..de1cd06da6d 100644 --- a/src/mesa/pipe/draw/draw_vertex_fetch.c +++ b/src/mesa/pipe/draw/draw_vertex_fetch.c @@ -62,6 +62,20 @@ fetch_attrib4(const void *ptr, unsigned format, float attrib[4]) case PIPE_FORMAT_R32_FLOAT: attrib[0] = ((float *) ptr)[0]; break; + + case PIPE_FORMAT_R32G32B32A32_SSCALED: + attrib[3] = ((int *) ptr)[3]; + /* fall-through */ + case PIPE_FORMAT_R32G32B32_SSCALED: + attrib[2] = ((int *) ptr)[2]; + /* fall-through */ + case PIPE_FORMAT_R32G32_SSCALED: + attrib[1] = ((int *) ptr)[1]; + /* fall-through */ + case PIPE_FORMAT_R32_SSCALED: + attrib[0] = ((int *) ptr)[0]; + break; + default: assert(0); }