aboutsummaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-06-05 02:41:29 -0400
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-22 21:51:37 -0400
commit421847cf1e33d5b95c9aa272bf3cf69afda3d964 (patch)
treea7fd72bf902697a9a32c18f023b0fb282a7029bf /src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
parentd41aef03c74e15fb8927bbae741c099694d14e79 (diff)
glsl: Implement image atomics and set layer
along with some more cleanup/oversight fixes
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp')
-rw-r--r--src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp143
1 files changed, 0 insertions, 143 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp b/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
index c64d4325d..5ca73610b 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
@@ -250,147 +250,4 @@ void EmitGetInBoundsFromOp(EmitContext& ctx) {
NotImplemented();
}
-void EmitBindlessImageAtomicIAdd32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBindlessImageAtomicSMin32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBindlessImageAtomicUMin32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBindlessImageAtomicSMax32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBindlessImageAtomicUMax32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBindlessImageAtomicInc32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBindlessImageAtomicDec32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBindlessImageAtomicAnd32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBindlessImageAtomicOr32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBindlessImageAtomicXor32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBindlessImageAtomicExchange32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBoundImageAtomicIAdd32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBoundImageAtomicSMin32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBoundImageAtomicUMin32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBoundImageAtomicSMax32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBoundImageAtomicUMax32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBoundImageAtomicInc32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBoundImageAtomicDec32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBoundImageAtomicAnd32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBoundImageAtomicOr32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBoundImageAtomicXor32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitBoundImageAtomicExchange32(EmitContext&) {
- NotImplemented();
-}
-
-void EmitImageAtomicIAdd32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- std::string_view coords, std::string_view value) {
- NotImplemented();
-}
-
-void EmitImageAtomicSMin32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- std::string_view coords, std::string_view value) {
- NotImplemented();
-}
-
-void EmitImageAtomicUMin32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- std::string_view coords, std::string_view value) {
- NotImplemented();
-}
-
-void EmitImageAtomicSMax32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- std::string_view coords, std::string_view value) {
- NotImplemented();
-}
-
-void EmitImageAtomicUMax32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- std::string_view coords, std::string_view value) {
- NotImplemented();
-}
-
-void EmitImageAtomicInc32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- std::string_view coords, std::string_view value) {
- NotImplemented();
-}
-
-void EmitImageAtomicDec32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- std::string_view coords, std::string_view value) {
- NotImplemented();
-}
-
-void EmitImageAtomicAnd32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- std::string_view coords, std::string_view value) {
- NotImplemented();
-}
-
-void EmitImageAtomicOr32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- std::string_view coords, std::string_view value) {
- NotImplemented();
-}
-
-void EmitImageAtomicXor32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- std::string_view coords, std::string_view value) {
- NotImplemented();
-}
-
-void EmitImageAtomicExchange32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
- std::string_view coords, std::string_view value) {
- NotImplemented();
-}
-
} // namespace Shader::Backend::GLSL