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-06-04 01:15:36 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:37 +0200
commit8d8ce24f20649be639dbb3cc0f3edc90c6a6481e (patch)
treeb85e6fd9a9440cdfe6abaab483f5a98a8ee5159f /src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
parentglsl: Implement Images (diff)
downloadyuzu-8d8ce24f20649be639dbb3cc0f3edc90c6a6481e.tar
yuzu-8d8ce24f20649be639dbb3cc0f3edc90c6a6481e.tar.gz
yuzu-8d8ce24f20649be639dbb3cc0f3edc90c6a6481e.tar.bz2
yuzu-8d8ce24f20649be639dbb3cc0f3edc90c6a6481e.tar.lz
yuzu-8d8ce24f20649be639dbb3cc0f3edc90c6a6481e.tar.xz
yuzu-8d8ce24f20649be639dbb3cc0f3edc90c6a6481e.tar.zst
yuzu-8d8ce24f20649be639dbb3cc0f3edc90c6a6481e.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.cpp56
1 files changed, 0 insertions, 56 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 cf7b2a51e..cac803146 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
@@ -232,62 +232,6 @@ void EmitUndefU64(EmitContext& ctx, IR::Inst& inst) {
NotImplemented();
}
-void EmitLoadGlobalU8(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitLoadGlobalS8(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitLoadGlobalU16(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitLoadGlobalS16(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitLoadGlobal32(EmitContext& ctx, std::string_view address) {
- NotImplemented();
-}
-
-void EmitLoadGlobal64(EmitContext& ctx, std::string_view address) {
- NotImplemented();
-}
-
-void EmitLoadGlobal128(EmitContext& ctx, std::string_view address) {
- NotImplemented();
-}
-
-void EmitWriteGlobalU8(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitWriteGlobalS8(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitWriteGlobalU16(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitWriteGlobalS16(EmitContext& ctx) {
- NotImplemented();
-}
-
-void EmitWriteGlobal32(EmitContext& ctx, std::string_view address, std::string_view value) {
- NotImplemented();
-}
-
-void EmitWriteGlobal64(EmitContext& ctx, std::string_view address, std::string_view value) {
- NotImplemented();
-}
-
-void EmitWriteGlobal128(EmitContext& ctx, std::string_view address, std::string_view value) {
- NotImplemented();
-}
-
void EmitGetZeroFromOp(EmitContext& ctx) {
NotImplemented();
}