2016-05-04 19:47:41 +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 is a GPU-backend specific test.
|
|
|
|
|
|
|
|
#include "Test.h"
|
|
|
|
|
|
|
|
#if SK_SUPPORT_GPU
|
2016-08-10 18:09:07 +00:00
|
|
|
#include "GrGpu.h"
|
2016-05-04 19:47:41 +00:00
|
|
|
#include "GrSurfaceProxy.h"
|
|
|
|
#include "GrTextureProxy.h"
|
|
|
|
#include "GrRenderTargetProxy.h"
|
|
|
|
|
2016-08-31 21:04:06 +00:00
|
|
|
// Check that the surface proxy's member vars are set as expected
|
2016-05-04 19:47:41 +00:00
|
|
|
static void check_surface(skiatest::Reporter* reporter,
|
|
|
|
GrSurfaceProxy* proxy,
|
|
|
|
GrSurfaceOrigin origin,
|
|
|
|
int width, int height,
|
2016-08-31 21:04:06 +00:00
|
|
|
GrPixelConfig config,
|
|
|
|
uint32_t uniqueID) {
|
2016-05-04 19:47:41 +00:00
|
|
|
REPORTER_ASSERT(reporter, proxy->origin() == origin);
|
|
|
|
REPORTER_ASSERT(reporter, proxy->width() == width);
|
|
|
|
REPORTER_ASSERT(reporter, proxy->height() == height);
|
|
|
|
REPORTER_ASSERT(reporter, proxy->config() == config);
|
2016-08-31 21:04:06 +00:00
|
|
|
if (SK_InvalidUniqueID != uniqueID) {
|
|
|
|
REPORTER_ASSERT(reporter, proxy->uniqueID() == uniqueID);
|
|
|
|
}
|
2016-05-04 19:47:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void check_rendertarget(skiatest::Reporter* reporter,
|
|
|
|
GrTextureProvider* provider,
|
|
|
|
GrRenderTargetProxy* rtProxy,
|
|
|
|
SkBackingFit fit) {
|
|
|
|
REPORTER_ASSERT(reporter, rtProxy->asTextureProxy() == nullptr); // for now
|
|
|
|
REPORTER_ASSERT(reporter, rtProxy->asRenderTargetProxy() == rtProxy);
|
|
|
|
|
|
|
|
GrRenderTarget* rt = rtProxy->instantiate(provider);
|
|
|
|
REPORTER_ASSERT(reporter, rt);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, rt->origin() == rtProxy->origin());
|
|
|
|
if (SkBackingFit::kExact == fit) {
|
|
|
|
REPORTER_ASSERT(reporter, rt->width() == rtProxy->width());
|
|
|
|
REPORTER_ASSERT(reporter, rt->height() == rtProxy->height());
|
|
|
|
} else {
|
|
|
|
REPORTER_ASSERT(reporter, rt->width() >= rtProxy->width());
|
|
|
|
REPORTER_ASSERT(reporter, rt->height() >= rtProxy->height());
|
|
|
|
}
|
|
|
|
REPORTER_ASSERT(reporter, rt->config() == rtProxy->config());
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, rt->isUnifiedMultisampled() == rtProxy->isUnifiedMultisampled());
|
|
|
|
REPORTER_ASSERT(reporter, rt->isStencilBufferMultisampled() ==
|
|
|
|
rtProxy->isStencilBufferMultisampled());
|
|
|
|
REPORTER_ASSERT(reporter, rt->numColorSamples() == rtProxy->numColorSamples());
|
|
|
|
REPORTER_ASSERT(reporter, rt->numStencilSamples() == rtProxy->numStencilSamples());
|
2016-08-10 18:09:07 +00:00
|
|
|
REPORTER_ASSERT(reporter, rt->isMixedSampled() == rtProxy->isMixedSampled());
|
|
|
|
REPORTER_ASSERT(reporter, rt->renderTargetPriv().flags() == rtProxy->testingOnly_getFlags());
|
2016-05-04 19:47:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void check_texture(skiatest::Reporter* reporter,
|
|
|
|
GrTextureProvider* provider,
|
|
|
|
GrTextureProxy* texProxy,
|
|
|
|
SkBackingFit fit) {
|
|
|
|
REPORTER_ASSERT(reporter, texProxy->asTextureProxy() == texProxy);
|
|
|
|
REPORTER_ASSERT(reporter, texProxy->asRenderTargetProxy() == nullptr); // for now
|
|
|
|
|
|
|
|
GrTexture* tex = texProxy->instantiate(provider);
|
|
|
|
REPORTER_ASSERT(reporter, tex);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, tex->origin() == texProxy->origin());
|
|
|
|
if (SkBackingFit::kExact == fit) {
|
|
|
|
REPORTER_ASSERT(reporter, tex->width() == texProxy->width());
|
|
|
|
REPORTER_ASSERT(reporter, tex->height() == texProxy->height());
|
|
|
|
} else {
|
|
|
|
REPORTER_ASSERT(reporter, tex->width() >= texProxy->width());
|
|
|
|
REPORTER_ASSERT(reporter, tex->height() >= texProxy->height());
|
|
|
|
}
|
|
|
|
REPORTER_ASSERT(reporter, tex->config() == texProxy->config());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-31 21:04:06 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(DeferredProxyTest, reporter, ctxInfo) {
|
2016-05-11 13:33:06 +00:00
|
|
|
GrTextureProvider* provider = ctxInfo.grContext()->textureProvider();
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
for (auto origin : { kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin }) {
|
|
|
|
for (auto widthHeight : { 100, 128 }) {
|
|
|
|
for (auto config : { kAlpha_8_GrPixelConfig, kRGBA_8888_GrPixelConfig }) {
|
|
|
|
for (auto fit : { SkBackingFit::kExact, SkBackingFit::kApprox }) {
|
|
|
|
for (auto budgeted : { SkBudgeted::kYes, SkBudgeted::kNo }) {
|
|
|
|
for (auto numSamples : { 0, 4}) {
|
2016-05-11 13:33:06 +00:00
|
|
|
bool renderable = ctxInfo.grContext()->caps()->isConfigRenderable(
|
2016-05-10 17:23:30 +00:00
|
|
|
config, numSamples > 0) &&
|
2016-05-11 13:33:06 +00:00
|
|
|
numSamples <= ctxInfo.grContext()->caps()->maxColorSampleCount();
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
GrSurfaceDesc desc;
|
|
|
|
desc.fOrigin = origin;
|
|
|
|
desc.fWidth = widthHeight;
|
|
|
|
desc.fHeight = widthHeight;
|
|
|
|
desc.fConfig = config;
|
|
|
|
desc.fSampleCnt = numSamples;
|
|
|
|
|
|
|
|
if (renderable) {
|
|
|
|
sk_sp<GrRenderTargetProxy> rtProxy(GrRenderTargetProxy::Make(
|
2016-05-11 13:33:06 +00:00
|
|
|
*ctxInfo.grContext()->caps(),
|
2016-05-04 19:47:41 +00:00
|
|
|
desc,
|
|
|
|
fit,
|
|
|
|
budgeted));
|
|
|
|
check_surface(reporter, rtProxy.get(), origin,
|
2016-08-31 21:04:06 +00:00
|
|
|
widthHeight, widthHeight, config, SK_InvalidUniqueID);
|
2016-05-04 19:47:41 +00:00
|
|
|
check_rendertarget(reporter, provider, rtProxy.get(), fit);
|
|
|
|
}
|
|
|
|
|
|
|
|
desc.fSampleCnt = 0;
|
|
|
|
|
|
|
|
sk_sp<GrTextureProxy> texProxy(GrTextureProxy::Make(desc,
|
|
|
|
fit,
|
|
|
|
budgeted));
|
|
|
|
check_surface(reporter, texProxy.get(), origin,
|
2016-08-31 21:04:06 +00:00
|
|
|
widthHeight, widthHeight, config, SK_InvalidUniqueID);
|
2016-05-04 19:47:41 +00:00
|
|
|
check_texture(reporter, provider, texProxy.get(), fit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-28 15:07:26 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WrappedProxyTest, reporter, ctxInfo) {
|
2016-05-11 13:33:06 +00:00
|
|
|
GrTextureProvider* provider = ctxInfo.grContext()->textureProvider();
|
2016-08-10 18:09:07 +00:00
|
|
|
const GrCaps& caps = *ctxInfo.grContext()->caps();
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
static const int kWidthHeight = 100;
|
|
|
|
|
|
|
|
for (auto origin : { kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin }) {
|
|
|
|
for (auto config : { kAlpha_8_GrPixelConfig, kRGBA_8888_GrPixelConfig }) {
|
|
|
|
for (auto budgeted : { SkBudgeted::kYes, SkBudgeted::kNo }) {
|
|
|
|
for (auto numSamples: { 0, 4}) {
|
2016-08-10 18:09:07 +00:00
|
|
|
bool renderable = caps.isConfigRenderable(config, numSamples > 0);
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
GrSurfaceDesc desc;
|
|
|
|
desc.fOrigin = origin;
|
|
|
|
desc.fWidth = kWidthHeight;
|
|
|
|
desc.fHeight = kWidthHeight;
|
|
|
|
desc.fConfig = config;
|
|
|
|
desc.fSampleCnt = numSamples;
|
|
|
|
|
2016-08-10 18:09:07 +00:00
|
|
|
// External on-screen render target.
|
|
|
|
if (renderable && kOpenGL_GrBackend == ctxInfo.backend()) {
|
|
|
|
GrBackendRenderTargetDesc backendDesc;
|
|
|
|
backendDesc.fWidth = kWidthHeight;
|
|
|
|
backendDesc.fHeight = kWidthHeight;
|
|
|
|
backendDesc.fConfig = config;
|
|
|
|
backendDesc.fOrigin = origin;
|
|
|
|
backendDesc.fSampleCnt = numSamples;
|
|
|
|
backendDesc.fStencilBits = 8;
|
|
|
|
backendDesc.fRenderTargetHandle = 0;
|
|
|
|
|
|
|
|
GrGpu* gpu = ctxInfo.grContext()->getGpu();
|
|
|
|
sk_sp<GrRenderTarget> defaultFBO(
|
|
|
|
gpu->wrapBackendRenderTarget(backendDesc, kBorrow_GrWrapOwnership));
|
2016-09-06 17:01:06 +00:00
|
|
|
REPORTER_ASSERT(reporter,
|
|
|
|
!defaultFBO->renderTargetPriv().maxWindowRectangles());
|
2016-08-10 18:09:07 +00:00
|
|
|
|
|
|
|
sk_sp<GrRenderTargetProxy> rtProxy(
|
|
|
|
GrRenderTargetProxy::Make(caps, defaultFBO));
|
|
|
|
check_surface(reporter, rtProxy.get(), origin,
|
2016-08-31 21:04:06 +00:00
|
|
|
kWidthHeight, kWidthHeight, config, defaultFBO->uniqueID());
|
2016-08-10 18:09:07 +00:00
|
|
|
check_rendertarget(reporter, provider, rtProxy.get(), SkBackingFit::kExact);
|
|
|
|
}
|
|
|
|
|
2016-05-04 19:47:41 +00:00
|
|
|
sk_sp<GrTexture> tex;
|
|
|
|
|
2016-08-10 18:09:07 +00:00
|
|
|
// Internal offscreen render target.
|
2016-05-04 19:47:41 +00:00
|
|
|
if (renderable) {
|
|
|
|
desc.fFlags = kRenderTarget_GrSurfaceFlag;
|
|
|
|
tex.reset(provider->createTexture(desc, budgeted));
|
|
|
|
sk_sp<GrRenderTarget> rt(sk_ref_sp(tex->asRenderTarget()));
|
2016-09-06 17:01:06 +00:00
|
|
|
REPORTER_ASSERT(reporter,
|
|
|
|
caps.maxWindowRectangles() ==
|
|
|
|
rt->renderTargetPriv().maxWindowRectangles());
|
2016-05-04 19:47:41 +00:00
|
|
|
|
2016-08-10 18:09:07 +00:00
|
|
|
sk_sp<GrRenderTargetProxy> rtProxy(GrRenderTargetProxy::Make(caps, rt));
|
2016-05-04 19:47:41 +00:00
|
|
|
check_surface(reporter, rtProxy.get(), origin,
|
2016-08-31 21:04:06 +00:00
|
|
|
kWidthHeight, kWidthHeight, config, rt->uniqueID());
|
2016-05-04 19:47:41 +00:00
|
|
|
check_rendertarget(reporter, provider, rtProxy.get(), SkBackingFit::kExact);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!tex) {
|
|
|
|
SkASSERT(kNone_GrSurfaceFlags == desc.fFlags );
|
|
|
|
desc.fSampleCnt = 0;
|
|
|
|
tex.reset(provider->createTexture(desc, budgeted));
|
|
|
|
}
|
|
|
|
|
|
|
|
sk_sp<GrTextureProxy> texProxy(GrTextureProxy::Make(tex));
|
|
|
|
check_surface(reporter, texProxy.get(), origin,
|
2016-08-31 21:04:06 +00:00
|
|
|
kWidthHeight, kWidthHeight, config, tex->uniqueID());
|
2016-05-04 19:47:41 +00:00
|
|
|
check_texture(reporter, provider, texProxy.get(), SkBackingFit::kExact);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|