summaryrefslogtreecommitdiffstats
path: root/src/mesa/swrast/s_texfetch.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2014-04-10 19:00:46 -0600
committerBrian Paul <[email protected]>2014-04-11 11:47:31 -0600
commit4da1efb37062950f41c1fe6f9649a507ab98adf4 (patch)
tree894406e1de83545170e5c90777a26815a266efaa /src/mesa/swrast/s_texfetch.c
parent9d36a8d4d27230dd91d4c4002a781edeec22d044 (diff)
swrast: fix more fetch_texel function names
These were missed/typo'd in the previous patch series: s/R8G8B8A/R8G8B8A8/ s/rgba_16/RGBA_UNORM16/ s/rgba_uint/RGBA_UINT/ s/rgba_int/RGBA_SINT/ Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/swrast/s_texfetch.c')
-rw-r--r--src/mesa/swrast/s_texfetch.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/mesa/swrast/s_texfetch.c b/src/mesa/swrast/s_texfetch.c
index 098a32fd4be..2a6eee049a0 100644
--- a/src/mesa/swrast/s_texfetch.c
+++ b/src/mesa/swrast/s_texfetch.c
@@ -163,9 +163,9 @@ texfetch_funcs[] =
},
{
MESA_FORMAT_R8G8B8A8_UNORM,
- fetch_texel_1d_R8G8B8A_UNORM,
- fetch_texel_2d_R8G8B8A_UNORM,
- fetch_texel_3d_R8G8B8A_UNORM
+ fetch_texel_1d_R8G8B8A8_UNORM,
+ fetch_texel_2d_R8G8B8A8_UNORM,
+ fetch_texel_3d_R8G8B8A8_UNORM
},
{
MESA_FORMAT_R8G8B8X8_UNORM,
@@ -435,9 +435,9 @@ texfetch_funcs[] =
},
{
MESA_FORMAT_RGBA_UNORM16,
- fetch_texel_1d_rgba_16,
- fetch_texel_2d_rgba_16,
- fetch_texel_3d_rgba_16
+ fetch_texel_1d_RGBA_UNORM16,
+ fetch_texel_2d_RGBA_UNORM16,
+ fetch_texel_3d_RGBA_UNORM16
},
{
MESA_FORMAT_RGBX_UNORM16,
@@ -1051,39 +1051,39 @@ texfetch_funcs[] =
},
{
MESA_FORMAT_RGBA_UINT8,
- fetch_texel_1d_rgba_uint8,
- fetch_texel_2d_rgba_uint8,
- fetch_texel_3d_rgba_uint8
+ fetch_texel_1d_RGBA_UINT8,
+ fetch_texel_2d_RGBA_UINT8,
+ fetch_texel_3d_RGBA_UINT8
},
{
MESA_FORMAT_RGBA_UINT16,
- fetch_texel_1d_rgba_uint16,
- fetch_texel_2d_rgba_uint16,
- fetch_texel_3d_rgba_uint16
+ fetch_texel_1d_RGBA_UINT16,
+ fetch_texel_2d_RGBA_UINT16,
+ fetch_texel_3d_RGBA_UINT16
},
{
MESA_FORMAT_RGBA_UINT32,
- fetch_texel_1d_rgba_uint32,
- fetch_texel_2d_rgba_uint32,
- fetch_texel_3d_rgba_uint32
+ fetch_texel_1d_RGBA_UINT32,
+ fetch_texel_2d_RGBA_UINT32,
+ fetch_texel_3d_RGBA_UINT32
},
{
MESA_FORMAT_RGBA_SINT8,
- fetch_texel_1d_rgba_int8,
- fetch_texel_2d_rgba_int8,
- fetch_texel_3d_rgba_int8
+ fetch_texel_1d_RGBA_SINT8,
+ fetch_texel_2d_RGBA_SINT8,
+ fetch_texel_3d_RGBA_SINT8
},
{
MESA_FORMAT_RGBA_SINT16,
- fetch_texel_1d_rgba_int16,
- fetch_texel_2d_rgba_int16,
- fetch_texel_3d_rgba_int16
+ fetch_texel_1d_RGBA_SINT16,
+ fetch_texel_2d_RGBA_SINT16,
+ fetch_texel_3d_RGBA_SINT16
},
{
MESA_FORMAT_RGBA_SINT32,
- fetch_texel_1d_rgba_int32,
- fetch_texel_2d_rgba_int32,
- fetch_texel_3d_rgba_int32
+ fetch_texel_1d_RGBA_SINT32,
+ fetch_texel_2d_RGBA_SINT32,
+ fetch_texel_3d_RGBA_SINT32
},
{
MESA_FORMAT_RGBX_UINT8,