2013-04-09 15:04:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2014-11-25 15:41:12 +00:00
|
|
|
#include "SkTypes.h"
|
|
|
|
|
2013-04-09 15:04:12 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
|
|
|
|
#include "GrContext.h"
|
|
|
|
#include "GrContextFactory.h"
|
|
|
|
#include "GrRenderTarget.h"
|
|
|
|
#include "GrTexture.h"
|
2014-09-30 19:18:44 +00:00
|
|
|
#include "GrSurfacePriv.h"
|
2014-01-10 22:08:27 +00:00
|
|
|
#include "Test.h"
|
2013-04-09 15:04:12 +00:00
|
|
|
|
2014-11-25 15:41:12 +00:00
|
|
|
// Tests that GrSurface::asTexture(), GrSurface::asRenderTarget(), and static upcasting of texture
|
|
|
|
// and render targets to GrSurface all work as expected.
|
2014-06-24 13:50:39 +00:00
|
|
|
DEF_GPUTEST(GrSurface, reporter, factory) {
|
2013-04-09 15:04:12 +00:00
|
|
|
GrContext* context = factory->get(GrContextFactory::kNull_GLContextType);
|
2014-09-05 20:34:00 +00:00
|
|
|
if (context) {
|
2014-10-28 21:33:06 +00:00
|
|
|
GrSurfaceDesc desc;
|
2013-04-09 15:04:12 +00:00
|
|
|
desc.fConfig = kSkia8888_GrPixelConfig;
|
2014-10-28 21:33:06 +00:00
|
|
|
desc.fFlags = kRenderTarget_GrSurfaceFlag;
|
2013-04-09 15:04:12 +00:00
|
|
|
desc.fWidth = 256;
|
|
|
|
desc.fHeight = 256;
|
|
|
|
desc.fSampleCnt = 0;
|
2015-04-30 21:18:54 +00:00
|
|
|
GrSurface* texRT1 = context->textureProvider()->createTexture(desc, false, NULL, 0);
|
2014-11-25 15:41:12 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, texRT1 == texRT1->asRenderTarget());
|
|
|
|
REPORTER_ASSERT(reporter, texRT1 == texRT1->asTexture());
|
|
|
|
REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT1->asRenderTarget()) ==
|
|
|
|
texRT1->asTexture());
|
|
|
|
REPORTER_ASSERT(reporter, texRT1->asRenderTarget() ==
|
|
|
|
static_cast<GrSurface*>(texRT1->asTexture()));
|
|
|
|
REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT1->asRenderTarget()) ==
|
|
|
|
static_cast<GrSurface*>(texRT1->asTexture()));
|
|
|
|
|
2014-10-28 21:33:06 +00:00
|
|
|
desc.fFlags = kNone_GrSurfaceFlags;
|
2015-04-30 21:18:54 +00:00
|
|
|
GrSurface* tex1 = context->textureProvider()->createTexture(desc, false, NULL, 0);
|
2014-11-25 15:41:12 +00:00
|
|
|
REPORTER_ASSERT(reporter, NULL == tex1->asRenderTarget());
|
|
|
|
REPORTER_ASSERT(reporter, tex1 == tex1->asTexture());
|
|
|
|
REPORTER_ASSERT(reporter, static_cast<GrSurface*>(tex1) == tex1->asTexture());
|
2013-04-09 15:04:12 +00:00
|
|
|
|
|
|
|
GrBackendTextureDesc backendDesc;
|
|
|
|
backendDesc.fConfig = kSkia8888_GrPixelConfig;
|
|
|
|
backendDesc.fFlags = kRenderTarget_GrBackendTextureFlag;
|
|
|
|
backendDesc.fWidth = 256;
|
|
|
|
backendDesc.fHeight = 256;
|
|
|
|
backendDesc.fSampleCnt = 0;
|
|
|
|
backendDesc.fTextureHandle = 5;
|
2015-06-18 16:12:16 +00:00
|
|
|
GrSurface* texRT2 = context->textureProvider()->wrapBackendTexture(
|
|
|
|
backendDesc, kBorrow_GrWrapOwnership);
|
2014-11-25 15:41:12 +00:00
|
|
|
REPORTER_ASSERT(reporter, texRT2 == texRT2->asRenderTarget());
|
|
|
|
REPORTER_ASSERT(reporter, texRT2 == texRT2->asTexture());
|
|
|
|
REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT2->asRenderTarget()) ==
|
|
|
|
texRT2->asTexture());
|
|
|
|
REPORTER_ASSERT(reporter, texRT2->asRenderTarget() ==
|
|
|
|
static_cast<GrSurface*>(texRT2->asTexture()));
|
|
|
|
REPORTER_ASSERT(reporter, static_cast<GrSurface*>(texRT2->asRenderTarget()) ==
|
|
|
|
static_cast<GrSurface*>(texRT2->asTexture()));
|
2013-04-09 15:04:12 +00:00
|
|
|
|
|
|
|
texRT1->unref();
|
|
|
|
texRT2->unref();
|
|
|
|
tex1->unref();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|