2016-01-20 14:18:10 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This test only works with the GPU backend.
|
|
|
|
|
|
|
|
#include "gm.h"
|
|
|
|
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
|
Revert "Revert "Plumb GrBackendTexture throughout skia.""
This reverts commit 7fa5c31c2c9af834bee66d5fcf476e250076c8d6.
Reason for revert: Relanding this change now that other fixes have landed.
Original change's description:
> Revert "Plumb GrBackendTexture throughout skia."
>
> This reverts commit 7da62b9059f3c1d31624a0e4da96ee5f908f9c12.
>
> Reason for revert: fix android roll
>
> Original change's description:
> > Plumb GrBackendTexture throughout skia.
> >
> > Bug: skia:
> > Change-Id: I1bae6768ee7229818a83ba608035a1f7867e6875
> > Reviewed-on: https://skia-review.googlesource.com/13645
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > Reviewed-by: Robert Phillips <robertphillips@google.com>
> >
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,brianosman@google.com,reviews@skia.org,stani@google.com
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
>
> Change-Id: I5cb8763cc837c83ebc6d10366fe2dd3efe35fb89
> Reviewed-on: https://skia-review.googlesource.com/13773
> Reviewed-by: Stan Iliev <stani@google.com>
> Commit-Queue: Stan Iliev <stani@google.com>
>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,reviews@skia.org,brianosman@google.com,stani@google.com
# Not skipping CQ checks because original CL landed > 1 day ago.
Change-Id: I92bc074e4fe37fa5c83186afadc472c03802e8f2
Reviewed-on: https://skia-review.googlesource.com/13975
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
2017-04-20 16:41:55 +00:00
|
|
|
#include "GrBackendSurface.h"
|
2016-01-20 14:18:10 +00:00
|
|
|
#include "GrContext.h"
|
2018-01-22 15:48:15 +00:00
|
|
|
#include "GrContextPriv.h"
|
2016-05-20 18:14:33 +00:00
|
|
|
#include "GrGpu.h"
|
2016-01-20 14:18:10 +00:00
|
|
|
#include "GrTest.h"
|
2016-05-20 18:14:33 +00:00
|
|
|
#include "gl/GrGLContext.h"
|
2016-01-20 14:18:10 +00:00
|
|
|
#include "SkBitmap.h"
|
|
|
|
#include "SkGradientShader.h"
|
|
|
|
#include "SkImage.h"
|
|
|
|
|
|
|
|
namespace skiagm {
|
|
|
|
class RectangleTexture : public GM {
|
|
|
|
public:
|
|
|
|
RectangleTexture() {
|
|
|
|
this->setBGColor(0xFFFFFFFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
SkString onShortName() override {
|
|
|
|
return SkString("rectangle_texture");
|
|
|
|
}
|
|
|
|
|
|
|
|
SkISize onISize() override {
|
|
|
|
return SkISize::Make(1035, 240);
|
|
|
|
}
|
|
|
|
|
|
|
|
void fillPixels(int width, int height, void *pixels) {
|
|
|
|
SkBitmap bmp;
|
|
|
|
bmp.setInfo(SkImageInfo::MakeN32(width, height, kOpaque_SkAlphaType), width * 4);
|
|
|
|
bmp.setPixels(pixels);
|
|
|
|
SkPaint paint;
|
|
|
|
SkCanvas canvas(bmp);
|
|
|
|
SkPoint pts[] = { {0, 0}, {0, SkIntToScalar(height)} };
|
|
|
|
SkColor colors0[] = { 0xFF1060B0 , 0xFF102030 };
|
2016-03-13 21:13:58 +00:00
|
|
|
paint.setShader(SkGradientShader::MakeLinear(pts, colors0, nullptr, 2,
|
|
|
|
SkShader::kClamp_TileMode));
|
2016-01-20 14:18:10 +00:00
|
|
|
canvas.drawPaint(paint);
|
|
|
|
|
|
|
|
SkColor colors1[] = { 0xFFA07010 , 0xFFA02080 };
|
|
|
|
paint.setAntiAlias(true);
|
2016-03-13 21:13:58 +00:00
|
|
|
paint.setShader(SkGradientShader::MakeLinear(pts, colors1, nullptr, 2,
|
|
|
|
SkShader::kClamp_TileMode));
|
2016-01-20 14:18:10 +00:00
|
|
|
canvas.drawCircle(SkIntToScalar(width) / 2, SkIntToScalar(height) / 2,
|
|
|
|
SkIntToScalar(width + height) / 5, paint);
|
|
|
|
}
|
|
|
|
|
2016-03-17 17:51:11 +00:00
|
|
|
sk_sp<SkImage> createRectangleTextureImg(GrContext* context, int width, int height,
|
|
|
|
void* pixels) {
|
2016-01-20 14:18:10 +00:00
|
|
|
if (!context) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-01-22 15:48:15 +00:00
|
|
|
GrGpu* gpu = context->contextPriv().getGpu();
|
2016-01-20 14:18:10 +00:00
|
|
|
if (!gpu) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
const GrGLContext* glCtx = gpu->glContextForTesting();
|
|
|
|
if (!glCtx) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(kGL_GrGLStandard == glCtx->standard() && glCtx->version() >= GR_GL_VER(3, 1)) &&
|
|
|
|
!glCtx->hasExtension("GL_ARB_texture_rectangle")) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We will always create the GL texture as GL_RGBA, however the pixels uploaded may be
|
|
|
|
// be RGBA or BGRA, depending on how SkPMColor was compiled.
|
|
|
|
GrGLenum format;
|
|
|
|
if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig) {
|
|
|
|
format = GR_GL_BGRA;
|
|
|
|
} else {
|
|
|
|
SkASSERT(kSkia8888_GrPixelConfig == kRGBA_8888_GrPixelConfig);
|
|
|
|
format = GR_GL_RGBA;
|
|
|
|
}
|
|
|
|
|
|
|
|
const GrGLInterface* gl = glCtx->interface();
|
|
|
|
// Useful for debugging whether errors result from use of RECTANGLE
|
|
|
|
// #define TARGET GR_GL_TEXTURE_2D
|
|
|
|
#define TARGET GR_GL_TEXTURE_RECTANGLE
|
2016-03-21 16:04:26 +00:00
|
|
|
GrGLuint id = 0;
|
2016-01-20 14:18:10 +00:00
|
|
|
GR_GL_CALL(gl, GenTextures(1, &id));
|
|
|
|
GR_GL_CALL(gl, BindTexture(TARGET, id));
|
|
|
|
GR_GL_CALL(gl, TexParameteri(TARGET, GR_GL_TEXTURE_MAG_FILTER,
|
|
|
|
GR_GL_NEAREST));
|
|
|
|
GR_GL_CALL(gl, TexParameteri(TARGET, GR_GL_TEXTURE_MIN_FILTER,
|
|
|
|
GR_GL_NEAREST));
|
|
|
|
GR_GL_CALL(gl, TexParameteri(TARGET, GR_GL_TEXTURE_WRAP_S,
|
2016-03-29 16:03:52 +00:00
|
|
|
GR_GL_CLAMP_TO_EDGE));
|
2016-01-20 14:18:10 +00:00
|
|
|
GR_GL_CALL(gl, TexParameteri(TARGET, GR_GL_TEXTURE_WRAP_T,
|
|
|
|
GR_GL_CLAMP_TO_EDGE));
|
|
|
|
GR_GL_CALL(gl, TexImage2D(TARGET, 0, GR_GL_RGBA, width, height, 0,
|
|
|
|
format, GR_GL_UNSIGNED_BYTE, pixels));
|
|
|
|
|
|
|
|
|
|
|
|
context->resetContext();
|
|
|
|
GrGLTextureInfo info;
|
|
|
|
info.fID = id;
|
|
|
|
info.fTarget = TARGET;
|
2017-12-18 19:48:15 +00:00
|
|
|
info.fFormat = GR_GL_RGBA8;
|
Revert "Revert "Plumb GrBackendTexture throughout skia.""
This reverts commit 7fa5c31c2c9af834bee66d5fcf476e250076c8d6.
Reason for revert: Relanding this change now that other fixes have landed.
Original change's description:
> Revert "Plumb GrBackendTexture throughout skia."
>
> This reverts commit 7da62b9059f3c1d31624a0e4da96ee5f908f9c12.
>
> Reason for revert: fix android roll
>
> Original change's description:
> > Plumb GrBackendTexture throughout skia.
> >
> > Bug: skia:
> > Change-Id: I1bae6768ee7229818a83ba608035a1f7867e6875
> > Reviewed-on: https://skia-review.googlesource.com/13645
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > Reviewed-by: Robert Phillips <robertphillips@google.com>
> >
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,brianosman@google.com,reviews@skia.org,stani@google.com
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
>
> Change-Id: I5cb8763cc837c83ebc6d10366fe2dd3efe35fb89
> Reviewed-on: https://skia-review.googlesource.com/13773
> Reviewed-by: Stan Iliev <stani@google.com>
> Commit-Queue: Stan Iliev <stani@google.com>
>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,reviews@skia.org,brianosman@google.com,stani@google.com
# Not skipping CQ checks because original CL landed > 1 day ago.
Change-Id: I92bc074e4fe37fa5c83186afadc472c03802e8f2
Reviewed-on: https://skia-review.googlesource.com/13975
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
2017-04-20 16:41:55 +00:00
|
|
|
|
2017-12-18 19:48:15 +00:00
|
|
|
GrBackendTexture rectangleTex(width, height, GrMipMapped::kNo, info);
|
Revert "Revert "Plumb GrBackendTexture throughout skia.""
This reverts commit 7fa5c31c2c9af834bee66d5fcf476e250076c8d6.
Reason for revert: Relanding this change now that other fixes have landed.
Original change's description:
> Revert "Plumb GrBackendTexture throughout skia."
>
> This reverts commit 7da62b9059f3c1d31624a0e4da96ee5f908f9c12.
>
> Reason for revert: fix android roll
>
> Original change's description:
> > Plumb GrBackendTexture throughout skia.
> >
> > Bug: skia:
> > Change-Id: I1bae6768ee7229818a83ba608035a1f7867e6875
> > Reviewed-on: https://skia-review.googlesource.com/13645
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > Reviewed-by: Robert Phillips <robertphillips@google.com>
> >
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,brianosman@google.com,reviews@skia.org,stani@google.com
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
>
> Change-Id: I5cb8763cc837c83ebc6d10366fe2dd3efe35fb89
> Reviewed-on: https://skia-review.googlesource.com/13773
> Reviewed-by: Stan Iliev <stani@google.com>
> Commit-Queue: Stan Iliev <stani@google.com>
>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com,reviews@skia.org,brianosman@google.com,stani@google.com
# Not skipping CQ checks because original CL landed > 1 day ago.
Change-Id: I92bc074e4fe37fa5c83186afadc472c03802e8f2
Reviewed-on: https://skia-review.googlesource.com/13975
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
2017-04-20 16:41:55 +00:00
|
|
|
|
|
|
|
if (sk_sp<SkImage> image = SkImage::MakeFromAdoptedTexture(context, rectangleTex,
|
2017-12-18 19:48:15 +00:00
|
|
|
kTopLeft_GrSurfaceOrigin,
|
|
|
|
kRGBA_8888_SkColorType)) {
|
2016-01-20 14:18:10 +00:00
|
|
|
return image;
|
|
|
|
}
|
|
|
|
GR_GL_CALL(gl, DeleteTextures(1, &id));
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void onDraw(SkCanvas* canvas) override {
|
2016-04-28 21:32:04 +00:00
|
|
|
GrContext *context = canvas->getGrContext();
|
|
|
|
if (!context) {
|
2016-01-20 14:18:10 +00:00
|
|
|
skiagm::GM::DrawGpuOnlyMessage(canvas);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-09-01 18:24:54 +00:00
|
|
|
constexpr int kWidth = 50;
|
|
|
|
constexpr int kHeight = 50;
|
|
|
|
constexpr SkScalar kPad = 5.f;
|
2016-01-20 14:18:10 +00:00
|
|
|
|
|
|
|
SkPMColor pixels[kWidth * kHeight];
|
|
|
|
this->fillPixels(kWidth, kHeight, pixels);
|
2016-03-17 17:51:11 +00:00
|
|
|
sk_sp<SkImage> rectImg(this->createRectangleTextureImg(context, kWidth, kHeight, pixels));
|
2016-01-20 14:18:10 +00:00
|
|
|
|
|
|
|
if (!rectImg) {
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
2016-09-01 18:24:54 +00:00
|
|
|
const char* kMsg = "Could not create rectangle texture image.";
|
2017-04-28 19:35:12 +00:00
|
|
|
canvas->drawString(kMsg, 10, 100, paint);
|
2016-01-20 14:18:10 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-09-01 18:24:54 +00:00
|
|
|
constexpr SkFilterQuality kQualities[] = {
|
2016-01-20 14:18:10 +00:00
|
|
|
kNone_SkFilterQuality,
|
|
|
|
kLow_SkFilterQuality,
|
|
|
|
kMedium_SkFilterQuality,
|
|
|
|
kHigh_SkFilterQuality,
|
|
|
|
};
|
|
|
|
|
2016-09-01 18:24:54 +00:00
|
|
|
constexpr SkScalar kScales[] = { 1.0f, 1.2f, 0.75f };
|
2016-01-20 14:18:10 +00:00
|
|
|
|
|
|
|
canvas->translate(kPad, kPad);
|
|
|
|
for (auto s : kScales) {
|
|
|
|
canvas->save();
|
|
|
|
canvas->scale(s, s);
|
|
|
|
for (auto q : kQualities) {
|
2016-03-17 17:51:11 +00:00
|
|
|
SkPaint plainPaint;
|
|
|
|
plainPaint.setFilterQuality(q);
|
|
|
|
canvas->drawImage(rectImg.get(), 0, 0, &plainPaint);
|
|
|
|
canvas->translate(kWidth + kPad, 0);
|
|
|
|
|
|
|
|
SkPaint clampPaint;
|
|
|
|
clampPaint.setFilterQuality(q);
|
2017-04-28 15:12:19 +00:00
|
|
|
clampPaint.setShader(rectImg->makeShader());
|
2016-03-17 17:51:11 +00:00
|
|
|
canvas->drawRect(SkRect::MakeWH(1.5f * kWidth, 1.5f * kHeight), clampPaint);
|
|
|
|
canvas->translate(kWidth * 1.5f + kPad, 0);
|
|
|
|
|
|
|
|
SkPaint repeatPaint;
|
|
|
|
repeatPaint.setFilterQuality(q);
|
|
|
|
repeatPaint.setShader(rectImg->makeShader(SkShader::kRepeat_TileMode,
|
|
|
|
SkShader::kMirror_TileMode));
|
|
|
|
canvas->drawRect(SkRect::MakeWH(1.5f * kWidth, 1.5f * kHeight), repeatPaint);
|
|
|
|
canvas->translate(1.5f * kWidth + kPad, 0);
|
2016-01-20 14:18:10 +00:00
|
|
|
}
|
|
|
|
canvas->restore();
|
|
|
|
canvas->translate(0, kPad + 1.5f * kHeight * s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef GM INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
DEF_GM(return new RectangleTexture;)
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|