From df218948bae74d72b5ef32258ded39f0cd552183 Mon Sep 17 00:00:00 2001 From: Ben Clayton Date: Thu, 27 Apr 2023 14:00:57 +0000 Subject: [PATCH] Run clang-format Change-Id: I9f93208a6670d9dc32a8900d03e0cfbc076adc41 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/129800 Kokoro: Kokoro Reviewed-by: Corentin Wallez Commit-Queue: Ben Clayton --- src/dawn/common/Log.cpp | 2 +- src/dawn/wire/client/Device.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dawn/common/Log.cpp b/src/dawn/common/Log.cpp index c7a180b2ff..73e352c101 100644 --- a/src/dawn/common/Log.cpp +++ b/src/dawn/common/Log.cpp @@ -96,7 +96,7 @@ LogMessage::~LogMessage() { #if DAWN_PLATFORM_IS(ANDROID) android_LogPriority androidPriority = AndroidLogPriority(mSeverity); __android_log_print(androidPriority, "Dawn", "%s: %s\n", severityName, fullMessage.c_str()); -#else // DAWN_PLATFORM_IS(ANDROID) +#else // DAWN_PLATFORM_IS(ANDROID) FILE* outputStream = stdout; if (mSeverity == LogSeverity::Warning || mSeverity == LogSeverity::Error) { outputStream = stderr; diff --git a/src/dawn/wire/client/Device.h b/src/dawn/wire/client/Device.h index 7a7a176786..6035b301b8 100644 --- a/src/dawn/wire/client/Device.h +++ b/src/dawn/wire/client/Device.h @@ -69,7 +69,7 @@ class Device final : public ObjectBase { void SetLimits(const WGPUSupportedLimits* limits); void SetFeatures(const WGPUFeatureName* features, uint32_t featuresCount); - WGPUAdapter GetAdapter(); // Not implemented in the wire. + WGPUAdapter GetAdapter(); // Not implemented in the wire. WGPUTextureUsage GetSupportedSurfaceUsage(WGPUSurface); // Not implemented in the wire. WGPUQueue GetQueue();