projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b709388
)
turnip: fix triangle strip
author
Jonathan Marek
<jonathan@marek.ca>
Mon, 14 Oct 2019 15:15:05 +0000
(11:15 -0400)
committer
Jonathan Marek
<jonathan@marek.ca>
Tue, 15 Oct 2019 11:56:19 +0000
(07:56 -0400)
Signed-off-by: Jonathan Marek <jonathan@marek.ca>
Reviewed-by: Kristian H. Kristensen <hoegsberg@google.com>
src/freedreno/vulkan/tu_pipeline.c
patch
|
blob
|
history
diff --git
a/src/freedreno/vulkan/tu_pipeline.c
b/src/freedreno/vulkan/tu_pipeline.c
index 2acf55564341e6fae18758605615aa4c6f1ef704..0e6463e2abc1da4999e2a87782af616cc2e48e81 100644
(file)
--- a/
src/freedreno/vulkan/tu_pipeline.c
+++ b/
src/freedreno/vulkan/tu_pipeline.c
@@
-177,7
+177,7
@@
tu6_primtype(VkPrimitiveTopology topology)
case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST:
return DI_PT_TRILIST;
case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP:
- return DI_PT_TRI
LIST
;
+ return DI_PT_TRI
STRIP
;
case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN:
return DI_PT_TRIFAN;
case VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY: