summaryrefslogtreecommitdiffstats
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-05-25 00:35:37 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:36 +0200
commit3d9ecbe99844c44074c26f2db4db376059f50534 (patch)
tree143a67c8da0e7df7568f79196339f5423931c757 /src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
parentglsl: Implement FCMP (diff)
downloadyuzu-3d9ecbe99844c44074c26f2db4db376059f50534.tar
yuzu-3d9ecbe99844c44074c26f2db4db376059f50534.tar.gz
yuzu-3d9ecbe99844c44074c26f2db4db376059f50534.tar.bz2
yuzu-3d9ecbe99844c44074c26f2db4db376059f50534.tar.lz
yuzu-3d9ecbe99844c44074c26f2db4db376059f50534.tar.xz
yuzu-3d9ecbe99844c44074c26f2db4db376059f50534.tar.zst
yuzu-3d9ecbe99844c44074c26f2db4db376059f50534.zip
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.cpp253
1 files changed, 1 insertions, 252 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 cb6562ebf..65eccaece 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
@@ -20,7 +20,7 @@ static void NotImplemented() {
}
void EmitPhi(EmitContext& ctx, IR::Inst& inst) {
- NotImplemented();
+ // NotImplemented();
}
void EmitVoid(EmitContext& ctx) {
@@ -439,257 +439,6 @@ void EmitSharedAtomicExchange64(EmitContext& ctx, std::string_view pointer_offse
NotImplemented();
}
-void EmitStorageAtomicIAdd32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicSMin32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicUMin32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicSMax32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicUMax32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicInc32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicDec32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicAnd32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicOr32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicXor32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicExchange32(EmitContext& ctx, const IR::Value& binding,
- const IR::Value& offset, std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicIAdd64(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicSMin64(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicUMin64(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicSMax64(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicUMax64(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicAnd64(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicOr64(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicXor64(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicExchange64(EmitContext& ctx, const IR::Value& binding,
- const IR::Value& offset, std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicAddF32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicAddF16x2(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicAddF32x2(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicMinF16x2(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicMinF32x2(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicMaxF16x2(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitStorageAtomicMaxF32x2(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset,
- std::string_view value) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicIAdd32(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicSMin32(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicUMin32(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicSMax32(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicUMax32(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicInc32(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicDec32(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicAnd32(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicOr32(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicXor32(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicExchange32(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicIAdd64(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicSMin64(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicUMin64(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicSMax64(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicUMax64(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicInc64(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicDec64(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicAnd64(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicOr64(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicXor64(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicExchange64(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicAddF32(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicAddF16x2(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicAddF32x2(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicMinF16x2(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicMinF32x2(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicMaxF16x2(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitGlobalAtomicMaxF32x2(EmitContext& ctx) {
- NotImplemented();
-}
-
void EmitBindlessImageSampleImplicitLod(EmitContext&) {
NotImplemented();
}