Browse Source
Update src/video_core/gpu.cpp
Co-authored-by: David <25727384+ogniK5377@users.noreply.github.com>
pull/15/merge
bunnei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/video_core/gpu.cpp
|
|
|
@ -349,7 +349,7 @@ void GPU::ProcessBindMethod(const MethodCall& method_call) { |
|
|
|
// Bind the current subchannel to the desired engine id.
|
|
|
|
LOG_DEBUG(HW_GPU, "Binding subchannel {} to engine {}", method_call.subchannel, |
|
|
|
method_call.argument); |
|
|
|
auto engine_id = static_cast<EngineID>(method_call.argument); |
|
|
|
const auto engine_id = static_cast<EngineID>(method_call.argument); |
|
|
|
bound_engines[method_call.subchannel] = static_cast<EngineID>(engine_id); |
|
|
|
switch (engine_id) { |
|
|
|
case EngineID::FERMI_TWOD_A: |
|
|
|
|