diff options
author | Eric Anholt <[email protected]> | 2019-08-29 13:20:45 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2019-11-07 19:43:41 +0000 |
commit | 80a8021d6ce02be599b3befd2dae6506a91f174a (patch) | |
tree | f2978d8e9f36c5d154a4a25a1466dc81a3306719 /src/mesa/swrast | |
parent | b28eb044cdc1b9bbf4a830b36476f047b660b7ad (diff) |
mesa: Stop defining a full separate format for RGBA_UINT8.
We have packed formats for RGBA and ABGR already, so we can just
pack/unpack code.
v2: Rebase on endianness macro rename
Reviewed-by: Marek Olšák <[email protected]> (v1)
Diffstat (limited to 'src/mesa/swrast')
-rw-r--r-- | src/mesa/swrast/s_texfetch.c | 1 | ||||
-rw-r--r-- | src/mesa/swrast/s_texfetch_tmp.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_texfetch.c b/src/mesa/swrast/s_texfetch.c index 61c87913467..cae8268b3aa 100644 --- a/src/mesa/swrast/s_texfetch.c +++ b/src/mesa/swrast/s_texfetch.c @@ -250,7 +250,6 @@ texfetch_funcs[] = /* Packed signed/unsigned non-normalized integer formats */ /* Array signed/unsigned non-normalized integer formats */ - FETCH_FUNCS(RGBA_UINT8), FETCH_FUNCS(RGBA_UINT16), FETCH_FUNCS(RGBA_UINT32), FETCH_FUNCS(RGBA_SINT8), diff --git a/src/mesa/swrast/s_texfetch_tmp.h b/src/mesa/swrast/s_texfetch_tmp.h index e0885da2f9c..06ff436349d 100644 --- a/src/mesa/swrast/s_texfetch_tmp.h +++ b/src/mesa/swrast/s_texfetch_tmp.h @@ -155,7 +155,6 @@ FETCH_RGBA(LA_SRGB8, GLubyte, 2) FETCH_RGBA(RGBA_SINT8, GLbyte, 4) FETCH_RGBA(RGBA_SINT16, GLshort, 4) FETCH_RGBA(RGBA_SINT32, GLint, 4) -FETCH_RGBA(RGBA_UINT8, GLubyte, 4) FETCH_RGBA(RGBA_UINT16, GLushort, 4) FETCH_RGBA(RGBA_UINT32, GLuint, 4) FETCH_RGBA(R_SNORM8, GLbyte, 1) |