projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e5f833
)
nv50,nvc0: remove bogus 64_FLOAT formats
author
Ilia Mirkin
<imirkin@alum.mit.edu>
Thu, 5 Mar 2015 17:09:21 +0000
(12:09 -0500)
committer
Ilia Mirkin
<imirkin@alum.mit.edu>
Sat, 7 Mar 2015 03:06:05 +0000
(22:06 -0500)
There is no HW support for these and the VBO pusher doesn't know about
them. No need to, either, since the st will be lowering them to 2x32.
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
src/gallium/drivers/nouveau/nv50/nv50_formats.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/nouveau/nv50/nv50_formats.c
b/src/gallium/drivers/nouveau/nv50/nv50_formats.c
index 0f86ba1de0d0a532b0b33cfe5da2e353f89b53da..6a1b11caaebdc94564fdbc6aeba672b951fe00d0 100644
(file)
--- a/
src/gallium/drivers/nouveau/nv50/nv50_formats.c
+++ b/
src/gallium/drivers/nouveau/nv50/nv50_formats.c
@@
-436,9
+436,4
@@
const struct nv50_format nv50_format_table[PIPE_FORMAT_COUNT] =
F3B(R32G32B32_FIXED, NONE, C0, C1, C2, xx, FLOAT, 32_32_32, V),
F2B(R32G32_FIXED, NONE, C0, C1, xx, xx, FLOAT, 32_32, V),
F1B(R32_FIXED, NONE, C0, xx, xx, xx, FLOAT, 32, V),
-
- C4B(R64G64B64A64_FLOAT, NONE, C0, C1, C2, C3, FLOAT, 32_32_32_32, V),
- F3B(R64G64B64_FLOAT, NONE, C0, C1, C2, xx, FLOAT, 32_32_32, V),
- F2B(R64G64_FLOAT, NONE, C0, C1, xx, xx, FLOAT, 32_32, V),
- F1B(R64_FLOAT, NONE, C0, xx, xx, xx, FLOAT, 32, V),
};