skia2/example/HelloWorld.cpp
Kevin Lubick 14abec45f0 [bazel] Add support for Dawn (via Vulkan)
sk_app has existing support for Dawn on top of Vulkan, and
this adds support to build //example:hello_world_dawn and
get this to run on Linux.

Dawn depends on Tint and abseil-cpp. Tint further depends on
spirv_tools and spirv_headers (for writing to the SPIR-V format).
Dawn and Tint only have GN and CMake support, so we need to make
our Bazel rules for them (see //third_party/BUILD.bazel).

abseil-cpp and the SPIR-V libraries have Bazel support, so we
can just include them (see //WORKSPACE.bazel). It is important
that @spirv_headers be called that exactly because @spirv_tools
depends on it by that name.

The hand-crafted cc_library rules for Dawn and Tint were produced
by reading the appropriate GN files and using the parts necessary
for a supporting Vulkan+Linux. If we use Dawn for other backends
(e.g. WebGPU), we will need to expand the Bazel rules. One day,
we might contribute the Bazel rules to Dawn and Tint so they
can support them and avoid breaking us if new files are added.

Suggested Review Order
 - bazel/common_config_settings/BUILD.bazel to see introduction
   of new select-able option "has_gpu_backend" which cleans up
   some of our code that is enabled for any GPU backend.
 - src/*/BUILD.bazel to see has_gpu_backend rolled out.
 - WORKSPACE.bazel to see DEPS declared there (using the files
   in third_party/externals, which are brought in via
   tools/git-sync-deps).
 - third_party/BUILD.bazel which adds Dawn and Tint rules.
   It may be helpful to look in third_party/externals for
   the Dawn [1] and Tint [2] GN files. Especially interesting
   are the Python scripts [3] Dawn uses to generate some
   header and source files.
 - All other files.

[1] https://dawn.googlesource.com/dawn/+/d9f22ce0346b222759d5510be3d1cd93caa5ab86/src/dawn/native/BUILD.gn#183
[2] https://dawn.googlesource.com/tint/+/453d5ae84ec30ab51ac592c13d472412ae8b5fc9/src/tint/BUILD.gn#174
[3] https://dawn.googlesource.com/dawn/+/d9f22ce0346b222759d5510be3d1cd93caa5ab86/generator/dawn_json_generator.py#774
Change-Id: Ied5b162045d8e841b9666457f0158457e2b078d4
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/516996
Reviewed-by: Ben Wagner <bungeman@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Kevin Lubick <kjlubick@google.com>
2022-03-22 13:05:52 +00:00

154 lines
3.8 KiB
C++

/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "example/HelloWorld.h"
#include "include/core/SkCanvas.h"
#include "include/core/SkFont.h"
#include "include/core/SkGraphics.h"
#include "include/core/SkSurface.h"
#include "include/effects/SkGradientShader.h"
using namespace sk_app;
Application* Application::Create(int argc, char** argv, void* platformData) {
return new HelloWorld(argc, argv, platformData);
}
HelloWorld::HelloWorld(int argc, char** argv, void* platformData)
#if defined(SK_GL)
: fBackendType(Window::kNativeGL_BackendType),
#elif defined(SK_VULKAN)
: fBackendType(Window::kVulkan_BackendType),
#elif defined(SK_DAWN)
: fBackendType(Window::kDawn_BackendType),
#else
: fBackendType(Window::kRaster_BackendType),
#endif
fRotationAngle(0) {
SkGraphics::Init();
fWindow = Window::CreateNativeWindow(platformData);
fWindow->setRequestedDisplayParams(DisplayParams());
// register callbacks
fWindow->pushLayer(this);
fWindow->attach(fBackendType);
}
HelloWorld::~HelloWorld() {
fWindow->detach();
delete fWindow;
}
void HelloWorld::updateTitle() {
if (!fWindow) {
return;
}
SkString title("Hello World ");
if (Window::kRaster_BackendType == fBackendType) {
title.append("Raster");
} else {
#if defined(SK_GL)
title.append("GL");
#elif defined(SK_VULKAN)
title.append("Vulkan");
#elif defined(SK_DAWN)
title.append("Dawn");
#else
title.append("Unknown GPU backend");
#endif
}
fWindow->setTitle(title.c_str());
}
void HelloWorld::onBackendCreated() {
this->updateTitle();
fWindow->show();
fWindow->inval();
}
void HelloWorld::onPaint(SkSurface* surface) {
auto canvas = surface->getCanvas();
// Clear background
canvas->clear(SK_ColorWHITE);
SkPaint paint;
paint.setColor(SK_ColorRED);
// Draw a rectangle with red paint
SkRect rect = SkRect::MakeXYWH(10, 10, 128, 128);
canvas->drawRect(rect, paint);
// Set up a linear gradient and draw a circle
{
SkPoint linearPoints[] = { { 0, 0 }, { 300, 300 } };
SkColor linearColors[] = { SK_ColorGREEN, SK_ColorBLACK };
paint.setShader(SkGradientShader::MakeLinear(linearPoints, linearColors, nullptr, 2,
SkTileMode::kMirror));
paint.setAntiAlias(true);
canvas->drawCircle(200, 200, 64, paint);
// Detach shader
paint.setShader(nullptr);
}
// Draw a message with a nice black paint
SkFont font;
font.setSubpixel(true);
font.setSize(20);
paint.setColor(SK_ColorBLACK);
canvas->save();
static const char message[] = "Hello World ";
// Translate and rotate
canvas->translate(300, 300);
fRotationAngle += 0.2f;
if (fRotationAngle > 360) {
fRotationAngle -= 360;
}
canvas->rotate(fRotationAngle);
// Draw the text
canvas->drawSimpleText(message, strlen(message), SkTextEncoding::kUTF8, 0, 0, font, paint);
canvas->restore();
}
void HelloWorld::onIdle() {
// Just re-paint continuously
fWindow->inval();
}
bool HelloWorld::onChar(SkUnichar c, skui::ModifierKey modifiers) {
if (' ' == c) {
if (Window::kRaster_BackendType == fBackendType) {
#if defined(SK_GL)
fBackendType = Window::kNativeGL_BackendType;
#elif defined(SK_VULKAN)
fBackendType = Window::kVulkan_BackendType;
#elif defined(SK_DAWN)
fBackendType = Window::kDawn_BackendType;
#else
SkDebugf("No GPU backend configured\n");
return true;
#endif
} else {
fBackendType = Window::kRaster_BackendType;
}
fWindow->detach();
fWindow->attach(fBackendType);
}
return true;
}