/* * Copyright 2024 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "include/core/SkAlphaType.h" #include "include/core/SkCanvas.h" #include "include/core/SkColor.h" #include "include/core/SkColorType.h" #include "include/core/SkImageInfo.h" #include "include/core/SkRRect.h" #include "include/core/SkRefCnt.h" #include "include/core/SkSurface.h" #include "include/gpu/ganesh/GrDirectContext.h" #include "include/gpu/ganesh/SkSurfaceGanesh.h" #include "include/gpu/ganesh/vk/GrVkDirectContext.h" #include "include/gpu/vk/VulkanBackendContext.h" #include "include/gpu/vk/VulkanExtensions.h" int main(int argc, char** argv) { // This will not run (since it's missing all the Vulkan setup code), // but it should compile and link to test the build system. skgpu::VulkanBackendContext backendContext; std::unique_ptr extensions(new skgpu::VulkanExtensions()); backendContext.fInstance = VK_NULL_HANDLE; backendContext.fDevice = VK_NULL_HANDLE; // This call will fail if run, due to the context not being set up. sk_sp ctx = GrDirectContexts::MakeVulkan(backendContext); if (!ctx) { // There would need to be vulkan cleanup here. return 1; } SkImageInfo imageInfo = SkImageInfo::Make(200, 400, kRGBA_8888_SkColorType, kPremul_SkAlphaType); sk_sp surface = SkSurfaces::RenderTarget(ctx.get(), skgpu::Budgeted::kYes, imageInfo); if (!surface) { printf("Could not make surface from Vulkan DirectContext\n"); return 1; } SkCanvas* canvas = surface->getCanvas(); canvas->clear(SK_ColorYELLOW); SkRRect rrect = SkRRect::MakeRectXY(SkRect::MakeLTRB(10, 20, 50, 70), 10, 10); SkPaint paint; paint.setColor(SK_ColorMAGENTA); paint.setAntiAlias(true); canvas->drawRRect(rrect, paint); ctx->flush(); // There would need to be vulkan cleanup here. return 0; }