diff options
author | Ilia Mirkin <[email protected]> | 2016-06-05 15:00:36 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-06-05 15:13:46 -0400 |
commit | 092ec3920f7f9a57fcc1c859a477e891752f5c1f (patch) | |
tree | 59e943f299f995315f4938b19ab3af08ccc17486 /src/gallium | |
parent | be365f34f04112572550337f387b61ed1ba69acd (diff) |
nv50,nvc0: fix BGR10_A2UI vertex format
This is mostly academic as this is not reachable from GL, which only has
the packed RGB10_A2UI vertex format.
Signed-off-by: Ilia Mirkin <[email protected]>
Cc: "12.0" <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/nouveau/nv50/nv50_formats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_formats.c b/src/gallium/drivers/nouveau/nv50/nv50_formats.c index 5b965672357..34d32d14493 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_formats.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_formats.c @@ -394,7 +394,7 @@ const struct nv50_vertex_format nv50_vertex_format[PIPE_FORMAT_COUNT] = VF(A, R10G10B10A2_SNORM, SNORM, 10_10_10_2, 0), VF(A, B10G10R10A2_SNORM, SNORM, 10_10_10_2, 1), VF(A, R10G10B10A2_UINT, UINT, 10_10_10_2, 0), - VF(A, B10G10R10A2_UINT, UINT, 10_10_10_2, 0), + VF(A, B10G10R10A2_UINT, UINT, 10_10_10_2, 1), VF(A, R11G11B10_FLOAT, FLOAT, 11_11_10, 0), |