[Mesa-dev] [PATCH 03/11] spirv: Silence unsupported tessellation capability warnings.
Kenneth Graunke
kenneth at whitecape.org
Mon Jan 9 05:26:42 UTC 2017
This is all implemented now.
Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
---
src/compiler/spirv/spirv_to_nir.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/compiler/spirv/spirv_to_nir.c b/src/compiler/spirv/spirv_to_nir.c
index 8f19afa77ee..2ea836bd7f6 100644
--- a/src/compiler/spirv/spirv_to_nir.c
+++ b/src/compiler/spirv/spirv_to_nir.c
@@ -515,7 +515,6 @@ struct_member_decoration_cb(struct vtn_builder *b,
break;
case SpvDecorationPatch:
- vtn_warn("Tessellation not yet supported");
break;
case SpvDecorationSpecId:
@@ -2505,11 +2504,11 @@ vtn_handle_preamble_instruction(struct vtn_builder *b, SpvOp opcode,
case SpvCapabilityInputAttachment:
case SpvCapabilityImageGatherExtended:
case SpvCapabilityStorageImageExtendedFormats:
+ case SpvCapabilityTessellation:
+ case SpvCapabilityTessellationPointSize:
break;
case SpvCapabilityGeometryStreams:
- case SpvCapabilityTessellation:
- case SpvCapabilityTessellationPointSize:
case SpvCapabilityLinkage:
case SpvCapabilityVector16:
case SpvCapabilityFloat16Buffer:
--
2.11.0
More information about the mesa-dev
mailing list