From 73708f4582a477b668a483121911d3110854da4e Mon Sep 17 00:00:00 2001 From: kmather73 Date: Sun, 16 Dec 2018 01:08:49 -0800 Subject: [PATCH] Nit: Fix 2 style issues --- src/video_core/gpu.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index 3b7f7bcdf4..a32ab429d8 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp @@ -164,7 +164,8 @@ void GPU::CallMethod(const MethodCall& method_call) { BufferMethods method = static_cast(method_call.method * 4); if (method < BufferMethods::NONPULLERMETHODS) { - switch (method) { + switch (method) + { case BufferMethods::BIND_OBJECT: { // Bind the current subchannel to the desired engine id. @@ -253,7 +254,8 @@ void GPU::CallMethod(const MethodCall& method_call) { LOG_ERROR(HW_GPU, "Special puller engine method WRCACHE_FLUSH not implemented"); break; } - case BufferMethods::UNK28: { + case BufferMethods::UNK28: + { // TODO(Kmather73): Research and implement this method. LOG_ERROR(HW_GPU, "Special puller engine method UNK28 not implemented"); break;