Module: Mesa Branch: 9.2 Commit: 4ba5fd1052b0a0059876b476c7869df29b4bffa3 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=4ba5fd1052b0a0059876b476c7869df29b4bffa3
Author: Ilia Mirkin <[email protected]> Date: Wed Aug 14 01:08:38 2013 -0400 nv30: U8_USCALED only works for size 4 See https://bugs.freedesktop.org/show_bug.cgi?id=61635 for a sample program. Changing it to use a vec4 makes it work. Remove the unsupported formats. Signed-off-by: Ilia Mirkin <[email protected]> Cc: "9.2 and 9.1" <[email protected]> (cherry picked from commit 14ee790df77c810f187860a8d51096173ff39fcf) --- src/gallium/drivers/nv30/nv30_format.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/nv30/nv30_format.c b/src/gallium/drivers/nv30/nv30_format.c index 664c31e..4367fbb 100644 --- a/src/gallium/drivers/nv30/nv30_format.c +++ b/src/gallium/drivers/nv30/nv30_format.c @@ -160,9 +160,6 @@ nv30_vtxfmt_table[PIPE_FORMAT_COUNT] = { _(R8G8_UNORM , U8_UNORM , 2), _(R8G8B8_UNORM , U8_UNORM , 3), _(R8G8B8A8_UNORM , U8_UNORM , 4), - _(R8_USCALED , U8_USCALED , 1), - _(R8G8_USCALED , U8_USCALED , 2), - _(R8G8B8_USCALED , U8_USCALED , 3), _(R8G8B8A8_USCALED , U8_USCALED , 4), _(R16_SNORM , V16_SNORM , 1), _(R16G16_SNORM , V16_SNORM , 2), _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
