Fix the clang-format issues.

This commit is contained in:
kmather73
2018-12-16 23:21:50 -08:00
parent 3446f72f08
commit e90c0a41a6
2 changed files with 6 additions and 6 deletions

View File

@@ -165,8 +165,7 @@ void GPU::CallMethod(const MethodCall& method_call) {
if (ExecuteMethodOnEngine(method_call)) { if (ExecuteMethodOnEngine(method_call)) {
CallEngineMethod(method_call); CallEngineMethod(method_call);
} } else {
else {
CallPullerMethod(method_call); CallPullerMethod(method_call);
} }
} }
@@ -306,7 +305,8 @@ void GPU::ProcessSemaphoreTriggerMethod() {
pullerState.acquire_active = true; pullerState.acquire_active = true;
pullerState.acquire_mode = true; pullerState.acquire_mode = true;
} else if (op == GpuSemaphoreOperation::AcquireMask) { } else if (op == GpuSemaphoreOperation::AcquireMask) {
// TODO(kemathe) The acquire mask operation waits for a value that, ANDed with semaphore_sequence, gives a non-0 result // TODO(kemathe) The acquire mask operation waits for a value that, ANDed with
// semaphore_sequence, gives a non-0 result
LOG_ERROR(HW_GPU, "Invalid semaphore operation AcquireMask not implemented"); LOG_ERROR(HW_GPU, "Invalid semaphore operation AcquireMask not implemented");
} else { } else {
LOG_ERROR(HW_GPU, "Invalid semaphore operation"); LOG_ERROR(HW_GPU, "Invalid semaphore operation");