a6841be235
This fixes a large number of SkSL namespaces which were labeled as if they were anonymous, and also a handful of other mislabeled namespaces. Missing namespace-end comments have been added throughout. A number of diffs are just indentation-related (adjusting 1- or 3- space indents to 2-space). Change-Id: I6c62052a0d3aea4ae12ca07e0c2a8587b2fce4ec Reviewed-on: https://skia-review.googlesource.com/c/skia/+/308503 Commit-Queue: John Stiles <johnstiles@google.com> Reviewed-by: Mike Klein <mtklein@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
121 lines
3.4 KiB
C++
121 lines
3.4 KiB
C++
/*
|
|
* Copyright 2020 Google LLC
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "gm/gm.h"
|
|
|
|
// This test only works with the Vulkan backend.
|
|
#ifdef SK_VULKAN
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
#include "include/core/SkImage.h"
|
|
#include "include/core/SkPaint.h"
|
|
#include "include/core/SkSize.h"
|
|
#include "include/core/SkString.h"
|
|
#include "include/gpu/GrDirectContext.h"
|
|
#include "tools/gpu/vk/VkYcbcrSamplerHelper.h"
|
|
|
|
static void release_ycbcrhelper(void* releaseContext) {
|
|
VkYcbcrSamplerHelper* ycbcrHelper = reinterpret_cast<VkYcbcrSamplerHelper*>(releaseContext);
|
|
delete ycbcrHelper;
|
|
}
|
|
|
|
namespace skiagm {
|
|
|
|
// This GM exercises the native YCbCr image format on Vulkan
|
|
class YCbCrImageGM : public GpuGM {
|
|
public:
|
|
YCbCrImageGM() {
|
|
this->setBGColor(0xFFCCCCCC);
|
|
}
|
|
|
|
protected:
|
|
|
|
SkString onShortName() override {
|
|
return SkString("ycbcrimage");
|
|
}
|
|
|
|
SkISize onISize() override {
|
|
return SkISize::Make(2*kPad+kImageSize, 2*kPad+kImageSize);
|
|
}
|
|
|
|
DrawResult createYCbCrImage(GrDirectContext* dContext, SkString* errorMsg) {
|
|
std::unique_ptr<VkYcbcrSamplerHelper> ycbcrHelper(new VkYcbcrSamplerHelper(dContext));
|
|
|
|
if (!ycbcrHelper->isYCbCrSupported()) {
|
|
*errorMsg = "YCbCr sampling not supported.";
|
|
return skiagm::DrawResult::kSkip;
|
|
}
|
|
|
|
if (!ycbcrHelper->createBackendTexture(kImageSize, kImageSize)) {
|
|
*errorMsg = "Failed to create I420 backend texture.";
|
|
return skiagm::DrawResult::kFail;
|
|
}
|
|
|
|
SkASSERT(!fYCbCrImage);
|
|
fYCbCrImage = SkImage::MakeFromTexture(dContext, ycbcrHelper->backendTexture(),
|
|
kTopLeft_GrSurfaceOrigin, kRGB_888x_SkColorType,
|
|
kPremul_SkAlphaType, nullptr,
|
|
release_ycbcrhelper, ycbcrHelper.get());
|
|
if (!fYCbCrImage) {
|
|
*errorMsg = "Failed to create I420 image.";
|
|
return DrawResult::kFail;
|
|
}
|
|
|
|
ycbcrHelper.release();
|
|
return DrawResult::kOk;
|
|
}
|
|
|
|
DrawResult onGpuSetup(GrDirectContext* context, SkString* errorMsg) override {
|
|
if (!context || context->abandoned()) {
|
|
return DrawResult::kSkip;
|
|
}
|
|
|
|
if (context->backend() != GrBackendApi::kVulkan) {
|
|
*errorMsg = "This GM requires a Vulkan context.";
|
|
return DrawResult::kSkip;
|
|
}
|
|
|
|
DrawResult result = this->createYCbCrImage(context, errorMsg);
|
|
if (result != DrawResult::kOk) {
|
|
return result;
|
|
}
|
|
|
|
return DrawResult::kOk;
|
|
}
|
|
|
|
void onGpuTeardown() override {
|
|
fYCbCrImage = nullptr;
|
|
}
|
|
|
|
DrawResult onDraw(GrRecordingContext*, GrRenderTargetContext*,
|
|
SkCanvas* canvas, SkString*) override {
|
|
SkASSERT(fYCbCrImage);
|
|
|
|
SkPaint paint;
|
|
paint.setFilterQuality(kLow_SkFilterQuality);
|
|
|
|
canvas->drawImage(fYCbCrImage, kPad, kPad, &paint);
|
|
return DrawResult::kOk;
|
|
}
|
|
|
|
private:
|
|
static const int kImageSize = 112;
|
|
static const int kPad = 8;
|
|
|
|
sk_sp<SkImage> fYCbCrImage;
|
|
|
|
typedef GpuGM INHERITED;
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
DEF_GM(return new YCbCrImageGM;)
|
|
|
|
} // namespace skiagm
|
|
|
|
#endif // SK_VULKAN
|