summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/backend/glsl')
-rw-r--r--src/shader_recompiler/backend/glsl/emit_context.cpp1
-rw-r--r--src/shader_recompiler/backend/glsl/emit_glsl.h1
-rw-r--r--src/shader_recompiler/backend/glsl/emit_glsl_instructions.h3
3 files changed, 2 insertions, 3 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_context.cpp b/src/shader_recompiler/backend/glsl/emit_context.cpp
index 54aa88b63..93057ebb9 100644
--- a/src/shader_recompiler/backend/glsl/emit_context.cpp
+++ b/src/shader_recompiler/backend/glsl/emit_context.cpp
@@ -6,6 +6,7 @@
6#include "shader_recompiler/backend/glsl/emit_context.h" 6#include "shader_recompiler/backend/glsl/emit_context.h"
7#include "shader_recompiler/frontend/ir/program.h" 7#include "shader_recompiler/frontend/ir/program.h"
8#include "shader_recompiler/profile.h" 8#include "shader_recompiler/profile.h"
9#include "shader_recompiler/runtime_info.h"
9 10
10namespace Shader::Backend::GLSL { 11namespace Shader::Backend::GLSL {
11namespace { 12namespace {
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl.h b/src/shader_recompiler/backend/glsl/emit_glsl.h
index fe221fa7c..20e5719e6 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl.h
+++ b/src/shader_recompiler/backend/glsl/emit_glsl.h
@@ -9,6 +9,7 @@
9#include "shader_recompiler/backend/bindings.h" 9#include "shader_recompiler/backend/bindings.h"
10#include "shader_recompiler/frontend/ir/program.h" 10#include "shader_recompiler/frontend/ir/program.h"
11#include "shader_recompiler/profile.h" 11#include "shader_recompiler/profile.h"
12#include "shader_recompiler/runtime_info.h"
12 13
13namespace Shader::Backend::GLSL { 14namespace Shader::Backend::GLSL {
14 15
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
index 9e812dabb..df28036e4 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
@@ -18,9 +18,6 @@ class Value;
18namespace Shader::Backend::GLSL { 18namespace Shader::Backend::GLSL {
19class EmitContext; 19class EmitContext;
20 20
21inline void EmitSetLoopSafetyVariable(EmitContext&) {}
22inline void EmitGetLoopSafetyVariable(EmitContext&) {}
23
24#define NotImplemented() throw NotImplementedException("GLSL instruction {}", __func__) 21#define NotImplemented() throw NotImplementedException("GLSL instruction {}", __func__)
25 22
26// Microinstruction emitters 23// Microinstruction emitters