Run clang-format
Change-Id: I9f93208a6670d9dc32a8900d03e0cfbc076adc41 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/129800 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Ben Clayton <bclayton@google.com>
This commit is contained in:
parent
f00679fd72
commit
df218948ba
|
@ -96,7 +96,7 @@ LogMessage::~LogMessage() {
|
||||||
#if DAWN_PLATFORM_IS(ANDROID)
|
#if DAWN_PLATFORM_IS(ANDROID)
|
||||||
android_LogPriority androidPriority = AndroidLogPriority(mSeverity);
|
android_LogPriority androidPriority = AndroidLogPriority(mSeverity);
|
||||||
__android_log_print(androidPriority, "Dawn", "%s: %s\n", severityName, fullMessage.c_str());
|
__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;
|
FILE* outputStream = stdout;
|
||||||
if (mSeverity == LogSeverity::Warning || mSeverity == LogSeverity::Error) {
|
if (mSeverity == LogSeverity::Warning || mSeverity == LogSeverity::Error) {
|
||||||
outputStream = stderr;
|
outputStream = stderr;
|
||||||
|
|
|
@ -69,7 +69,7 @@ class Device final : public ObjectBase {
|
||||||
void SetLimits(const WGPUSupportedLimits* limits);
|
void SetLimits(const WGPUSupportedLimits* limits);
|
||||||
void SetFeatures(const WGPUFeatureName* features, uint32_t featuresCount);
|
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.
|
WGPUTextureUsage GetSupportedSurfaceUsage(WGPUSurface); // Not implemented in the wire.
|
||||||
WGPUQueue GetQueue();
|
WGPUQueue GetQueue();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue