Commit 3954a0ba by Ben Clayton

SpirvShader: Document ops requiring capabilities

... that will not be required for Pastel 1.0. Bug: b/126873455 Change-Id: I024296dd39ae74613577bd5dbd8d75051b7f4f5c Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/28790Tested-by: 's avatarBen Clayton <bclayton@google.com> Presubmit-Ready: Ben Clayton <bclayton@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Reviewed-by: 's avatarChris Forbes <chrisforbes@google.com> Kokoro-Presubmit: kokoro <noreply+kokoro@google.com>
parent 3f007c4d
...@@ -3595,11 +3595,13 @@ namespace sw ...@@ -3595,11 +3595,13 @@ namespace sw
} }
case GLSLstd450PackDouble2x32: case GLSLstd450PackDouble2x32:
{ {
// Requires Float64 capability.
UNIMPLEMENTED("GLSLstd450PackDouble2x32"); UNIMPLEMENTED("GLSLstd450PackDouble2x32");
break; break;
} }
case GLSLstd450UnpackDouble2x32: case GLSLstd450UnpackDouble2x32:
{ {
// Requires Float64 capability.
UNIMPLEMENTED("GLSLstd450UnpackDouble2x32"); UNIMPLEMENTED("GLSLstd450UnpackDouble2x32");
break; break;
} }
...@@ -3634,16 +3636,19 @@ namespace sw ...@@ -3634,16 +3636,19 @@ namespace sw
} }
case GLSLstd450InterpolateAtCentroid: case GLSLstd450InterpolateAtCentroid:
{ {
// Requires sampleRateShading / InterpolationFunction capability.
UNIMPLEMENTED("GLSLstd450InterpolateAtCentroid"); UNIMPLEMENTED("GLSLstd450InterpolateAtCentroid");
break; break;
} }
case GLSLstd450InterpolateAtSample: case GLSLstd450InterpolateAtSample:
{ {
// Requires sampleRateShading / InterpolationFunction capability.
UNIMPLEMENTED("GLSLstd450InterpolateAtSample"); UNIMPLEMENTED("GLSLstd450InterpolateAtSample");
break; break;
} }
case GLSLstd450InterpolateAtOffset: case GLSLstd450InterpolateAtOffset:
{ {
// Requires sampleRateShading / InterpolationFunction capability.
UNIMPLEMENTED("GLSLstd450InterpolateAtOffset"); UNIMPLEMENTED("GLSLstd450InterpolateAtOffset");
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment