aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/engines/maxwell_compute.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-02-12 19:24:34 -0500
committerGitHub <noreply@github.com>2019-02-12 19:24:34 -0500
commitc440ecfafe5204b22ec00d2ba8e0cd39464c6a1a (patch)
treeb15696c7f74bfaaa38c493b33dacc3e4d8ca96eb /src/video_core/engines/maxwell_compute.cpp
parent444231a83d831c4cfcee03d29e2a375b258bdc4e (diff)
parent1ddcd0e6f03e83d0447f03ac57d5e0bda7a2f4c7 (diff)
Merge pull request #2104 from ReinUsesLisp/compute-assert
kepler_compute: Fixup assert and rename the engine
Diffstat (limited to 'src/video_core/engines/maxwell_compute.cpp')
-rw-r--r--src/video_core/engines/maxwell_compute.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/video_core/engines/maxwell_compute.cpp b/src/video_core/engines/maxwell_compute.cpp
deleted file mode 100644
index 656db6a61..000000000
--- a/src/video_core/engines/maxwell_compute.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2018 yuzu Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#include "common/logging/log.h"
-#include "core/core.h"
-#include "video_core/engines/maxwell_compute.h"
-
-namespace Tegra::Engines {
-
-void MaxwellCompute::CallMethod(const GPU::MethodCall& method_call) {
- ASSERT_MSG(method_call.method < Regs::NUM_REGS,
- "Invalid MaxwellCompute register, increase the size of the Regs structure");
-
- regs.reg_array[method_call.method] = method_call.argument;
-
- switch (method_call.method) {
- case MAXWELL_COMPUTE_REG_INDEX(compute): {
- LOG_CRITICAL(HW_GPU, "Compute shaders are not implemented");
- UNREACHABLE();
- break;
- }
- default:
- break;
- }
-}
-
-} // namespace Tegra::Engines