summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/shader_type.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-06-23 07:41:00 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:39 +0200
commit395bed3a0af90a53be44e81eadd06f4931c8e933 (patch)
tree9c9b45a5d3c4cd72957d0bc5631c3e71106344d1 /src/video_core/engines/shader_type.h
parentlower_int64_to_int32: Add missing include (diff)
downloadyuzu-395bed3a0af90a53be44e81eadd06f4931c8e933.tar
yuzu-395bed3a0af90a53be44e81eadd06f4931c8e933.tar.gz
yuzu-395bed3a0af90a53be44e81eadd06f4931c8e933.tar.bz2
yuzu-395bed3a0af90a53be44e81eadd06f4931c8e933.tar.lz
yuzu-395bed3a0af90a53be44e81eadd06f4931c8e933.tar.xz
yuzu-395bed3a0af90a53be44e81eadd06f4931c8e933.tar.zst
yuzu-395bed3a0af90a53be44e81eadd06f4931c8e933.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/shader_type.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/video_core/engines/shader_type.h b/src/video_core/engines/shader_type.h
deleted file mode 100644
index 49ce5cde5..000000000
--- a/src/video_core/engines/shader_type.h
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright 2019 yuzu Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#pragma once
-
-#include "common/common_types.h"
-
-namespace Tegra::Engines {
-
-enum class ShaderType : u32 {
- Vertex = 0,
- TesselationControl = 1,
- TesselationEval = 2,
- Geometry = 3,
- Fragment = 4,
- Compute = 5,
-};
-static constexpr std::size_t MaxShaderTypes = 6;
-
-} // namespace Tegra::Engines