1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-03 09:56:32 -05:00

Clang Format and Documentation.

This commit is contained in:
Fernando Sahmkow
2020-04-28 13:53:47 -04:00
parent 37c690576f
commit 9df67b2095
10 changed files with 20 additions and 10 deletions

View File

@@ -305,13 +305,15 @@ void GPU::CallEngineMethod(const MethodCall& method_call) {
maxwell_3d->CallMethod(method_call.method, method_call.argument, method_call.IsLastCall());
break;
case EngineID::KEPLER_COMPUTE_B:
kepler_compute->CallMethod(method_call.method, method_call.argument, method_call.IsLastCall());
kepler_compute->CallMethod(method_call.method, method_call.argument,
method_call.IsLastCall());
break;
case EngineID::MAXWELL_DMA_COPY_A:
maxwell_dma->CallMethod(method_call.method, method_call.argument, method_call.IsLastCall());
break;
case EngineID::KEPLER_INLINE_TO_MEMORY_B:
kepler_memory->CallMethod(method_call.method, method_call.argument, method_call.IsLastCall());
kepler_memory->CallMethod(method_call.method, method_call.argument,
method_call.IsLastCall());
break;
default:
UNIMPLEMENTED_MSG("Unimplemented engine");