blob: 0dcacf9b6bcbd13d3c4460ed9820caec8a3fe3d7 [file] [log] [blame]
bsalomon7ea33f52015-11-22 14:51:00 -08001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "Test.h"
9#if SK_SUPPORT_GPU
10#include "GrContext.h"
11#include "GrContextFactory.h"
Brian Salomon94efbf52016-11-29 13:43:05 -050012#include "GrShaderCaps.h"
Robert Phillipse2f7d182016-12-15 09:23:05 -050013#include "GrSurfaceContext.h"
bsalomon7ea33f52015-11-22 14:51:00 -080014#include "gl/GrGLGpu.h"
15#include "gl/GrGLUtil.h"
bsalomon273c0f52016-03-31 10:59:06 -070016#include "gl/GLTestContext.h"
bsalomon7ea33f52015-11-22 14:51:00 -080017
bsalomon273c0f52016-03-31 10:59:06 -070018using sk_gpu_test::GLTestContext;
bsalomon3724e572016-03-30 18:56:19 -070019
bsalomon273c0f52016-03-31 10:59:06 -070020static void cleanup(GLTestContext* glctx0, GrGLuint texID0, GLTestContext* glctx1, GrContext* grctx1,
bsalomon7ea33f52015-11-22 14:51:00 -080021 const GrGLTextureInfo* grbackendtex1, GrEGLImage image1) {
22 if (glctx1) {
23 glctx1->makeCurrent();
24 if (grctx1) {
25 if (grbackendtex1) {
26 GrGLGpu* gpu1 = static_cast<GrGLGpu*>(grctx1->getGpu());
27 GrBackendObject handle = reinterpret_cast<GrBackendObject>(grbackendtex1);
28 gpu1->deleteTestingOnlyBackendTexture(handle, false);
29 }
30 grctx1->unref();
31 }
32 if (GR_EGL_NO_IMAGE != image1) {
33 glctx1->destroyEGLImage(image1);
34 }
bsalomon7ea33f52015-11-22 14:51:00 -080035 }
36
37 glctx0->makeCurrent();
38 if (texID0) {
39 GR_GL_CALL(glctx0->gl(), DeleteTextures(1, &texID0));
40 }
41}
42
bsalomona98419b2015-11-23 07:09:50 -080043static void test_read_pixels(skiatest::Reporter* reporter, GrContext* context,
Robert Phillipse2f7d182016-12-15 09:23:05 -050044 GrSurface* externalTexture, uint32_t expectedPixelValues[]) {
bsalomona98419b2015-11-23 07:09:50 -080045 int pixelCnt = externalTexture->width() * externalTexture->height();
46 SkAutoTMalloc<uint32_t> pixels(pixelCnt);
47 memset(pixels.get(), 0, sizeof(uint32_t)*pixelCnt);
48 bool read = externalTexture->readPixels(0, 0, externalTexture->width(),
49 externalTexture->height(), kRGBA_8888_GrPixelConfig,
50 pixels.get());
51 if (!read) {
52 ERRORF(reporter, "Error reading external texture.");
53 }
54 for (int i = 0; i < pixelCnt; ++i) {
55 if (pixels.get()[i] != expectedPixelValues[i]) {
56 ERRORF(reporter, "Error, external texture pixel value %d should be 0x%08x,"
57 " got 0x%08x.", i, expectedPixelValues[i], pixels.get()[i]);
58 break;
59 }
60 }
61}
62
63static void test_write_pixels(skiatest::Reporter* reporter, GrContext* context,
64 GrTexture* externalTexture) {
65 int pixelCnt = externalTexture->width() * externalTexture->height();
66 SkAutoTMalloc<uint32_t> pixels(pixelCnt);
67 memset(pixels.get(), 0, sizeof(uint32_t)*pixelCnt);
68 bool write = externalTexture->writePixels(0, 0, 0, 0, kRGBA_8888_GrPixelConfig, pixels.get());
69 REPORTER_ASSERT_MESSAGE(reporter, !write, "Should not be able to write to a EXTERNAL"
70 " texture.");
71}
72
73static void test_copy_surface(skiatest::Reporter* reporter, GrContext* context,
74 GrTexture* externalTexture, uint32_t expectedPixelValues[]) {
75 GrSurfaceDesc copyDesc;
76 copyDesc.fConfig = kRGBA_8888_GrPixelConfig;
77 copyDesc.fWidth = externalTexture->width();
78 copyDesc.fHeight = externalTexture->height();
79 copyDesc.fFlags = kRenderTarget_GrSurfaceFlag;
Robert Phillipse2f7d182016-12-15 09:23:05 -050080
81 sk_sp<GrSurfaceProxy> copy(GrSurfaceProxy::TestCopy(context, copyDesc,
82 externalTexture, SkBudgeted::kYes));
83
84 GrSurface* copySurf = copy->instantiate(context->textureProvider());
85
86 test_read_pixels(reporter, context, copySurf, expectedPixelValues);
bsalomona98419b2015-11-23 07:09:50 -080087}
88
bsalomon758586c2016-04-06 14:02:39 -070089DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(EGLImageTest, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070090 GrContext* context0 = ctxInfo.grContext();
91 sk_gpu_test::GLTestContext* glCtx0 = ctxInfo.glContext();
bsalomonf2f1c172016-04-05 12:59:06 -070092
kkinnunen59319222015-11-22 23:23:53 -080093 // Try to create a second GL context and then check if the contexts have necessary
94 // extensions to run this test.
bsalomon7ea33f52015-11-22 14:51:00 -080095
kkinnunen59319222015-11-22 23:23:53 -080096 if (kGLES_GrGLStandard != glCtx0->gl()->fStandard) {
97 return;
bsalomon7ea33f52015-11-22 14:51:00 -080098 }
kkinnunen59319222015-11-22 23:23:53 -080099 GrGLGpu* gpu0 = static_cast<GrGLGpu*>(context0->getGpu());
Brian Salomon1edc5b92016-11-29 13:43:46 -0500100 if (!gpu0->glCaps().shaderCaps()->externalTextureSupport()) {
kkinnunen59319222015-11-22 23:23:53 -0800101 return;
102 }
103
Ben Wagner145dbcd2016-11-03 14:40:50 -0400104 std::unique_ptr<GLTestContext> glCtx1 = glCtx0->makeNew();
kkinnunen59319222015-11-22 23:23:53 -0800105 if (!glCtx1) {
106 return;
107 }
108 GrContext* context1 = GrContext::Create(kOpenGL_GrBackend, (GrBackendContext)glCtx1->gl());
109 const GrGLTextureInfo* backendTexture1 = nullptr;
110 GrEGLImage image = GR_EGL_NO_IMAGE;
111 GrGLTextureInfo externalTexture;
112 externalTexture.fID = 0;
113
114 if (!context1) {
Ben Wagner145dbcd2016-11-03 14:40:50 -0400115 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -0800116 return;
117 }
118
119 if (!glCtx1->gl()->hasExtension("EGL_KHR_image") ||
120 !glCtx1->gl()->hasExtension("EGL_KHR_gl_texture_2D_image")) {
Ben Wagner145dbcd2016-11-03 14:40:50 -0400121 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -0800122 return;
123 }
124
125 ///////////////////////////////// CONTEXT 1 ///////////////////////////////////
126
127 // Use GL Context 1 to create a texture unknown to GrContext.
128 context1->flush();
129 GrGpu* gpu1 = context1->getGpu();
130 static const int kSize = 100;
131 backendTexture1 = reinterpret_cast<const GrGLTextureInfo*>(
132 gpu1->createTestingOnlyBackendTexture(nullptr, kSize, kSize, kRGBA_8888_GrPixelConfig));
133 if (!backendTexture1 || !backendTexture1->fID) {
134 ERRORF(reporter, "Error creating texture for EGL Image");
Ben Wagner145dbcd2016-11-03 14:40:50 -0400135 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -0800136 return;
137 }
138 if (GR_GL_TEXTURE_2D != backendTexture1->fTarget) {
139 ERRORF(reporter, "Expected backend texture to be 2D");
Ben Wagner145dbcd2016-11-03 14:40:50 -0400140 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -0800141 return;
142 }
143
144 // Wrap the texture in an EGLImage
145 image = glCtx1->texture2DToEGLImage(backendTexture1->fID);
146 if (GR_EGL_NO_IMAGE == image) {
147 ERRORF(reporter, "Error creating EGL Image from texture");
Ben Wagner145dbcd2016-11-03 14:40:50 -0400148 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -0800149 return;
150 }
151
152 // Populate the texture using GL context 1. Important to use TexSubImage as TexImage orphans
153 // the EGL image. Also, this must be done after creating the EGLImage as the texture
154 // contents may not be preserved when the image is created.
155 SkAutoTMalloc<uint32_t> pixels(kSize * kSize);
156 for (int i = 0; i < kSize*kSize; ++i) {
157 pixels.get()[i] = 0xDDAABBCC;
158 }
159 GR_GL_CALL(glCtx1->gl(), ActiveTexture(GR_GL_TEXTURE0));
160 GR_GL_CALL(glCtx1->gl(), BindTexture(backendTexture1->fTarget, backendTexture1->fID));
161 GR_GL_CALL(glCtx1->gl(), TexSubImage2D(backendTexture1->fTarget, 0, 0, 0, kSize, kSize,
162 GR_GL_RGBA, GR_GL_UNSIGNED_BYTE, pixels.get()));
163 GR_GL_CALL(glCtx1->gl(), Finish());
164 // We've been making direct GL calls in GL context 1, let GrContext 1 know its internal
165 // state is invalid.
166 context1->resetContext();
167
168 ///////////////////////////////// CONTEXT 0 ///////////////////////////////////
169
170 // Make a new texture ID in GL Context 0 from the EGL Image
171 glCtx0->makeCurrent();
172 externalTexture.fTarget = GR_GL_TEXTURE_EXTERNAL;
173 externalTexture.fID = glCtx0->eglImageToExternalTexture(image);
174
175 // Wrap this texture ID in a GrTexture
176 GrBackendTextureDesc externalDesc;
177 externalDesc.fConfig = kRGBA_8888_GrPixelConfig;
178 externalDesc.fWidth = kSize;
179 externalDesc.fHeight = kSize;
180 externalDesc.fTextureHandle = reinterpret_cast<GrBackendObject>(&externalTexture);
bungeman6bd52842016-10-27 09:30:08 -0700181 sk_sp<GrTexture> externalTextureObj(
kkinnunen59319222015-11-22 23:23:53 -0800182 context0->textureProvider()->wrapBackendTexture(externalDesc));
183 if (!externalTextureObj) {
184 ERRORF(reporter, "Error wrapping external texture in GrTexture.");
Ben Wagner145dbcd2016-11-03 14:40:50 -0400185 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -0800186 return;
187 }
188
bsalomona98419b2015-11-23 07:09:50 -0800189 // Should not be able to wrap as a RT
190 externalDesc.fFlags = kRenderTarget_GrBackendTextureFlag;
bungeman6bd52842016-10-27 09:30:08 -0700191 sk_sp<GrTexture> externalTextureRTObj(
bsalomona98419b2015-11-23 07:09:50 -0800192 context0->textureProvider()->wrapBackendTexture(externalDesc));
193 if (externalTextureRTObj) {
194 ERRORF(reporter, "Should not be able to wrap an EXTERNAL texture as a RT.");
kkinnunen59319222015-11-22 23:23:53 -0800195 }
bsalomona98419b2015-11-23 07:09:50 -0800196 externalDesc.fFlags = kNone_GrBackendTextureFlag;
197
198 // Should not be able to wrap with a sample count
199 externalDesc.fSampleCnt = 4;
bungeman6bd52842016-10-27 09:30:08 -0700200 sk_sp<GrTexture> externalTextureMSAAObj(
bsalomona98419b2015-11-23 07:09:50 -0800201 context0->textureProvider()->wrapBackendTexture(externalDesc));
202 if (externalTextureMSAAObj) {
203 ERRORF(reporter, "Should not be able to wrap an EXTERNAL texture with MSAA.");
kkinnunen59319222015-11-22 23:23:53 -0800204 }
bsalomona98419b2015-11-23 07:09:50 -0800205 externalDesc.fSampleCnt = 0;
206
bungeman6bd52842016-10-27 09:30:08 -0700207 test_read_pixels(reporter, context0, externalTextureObj.get(), pixels.get());
bsalomona98419b2015-11-23 07:09:50 -0800208
bungeman6bd52842016-10-27 09:30:08 -0700209 test_write_pixels(reporter, context0, externalTextureObj.get());
bsalomona98419b2015-11-23 07:09:50 -0800210
bungeman6bd52842016-10-27 09:30:08 -0700211 test_copy_surface(reporter, context0, externalTextureObj.get(), pixels.get());
bsalomona98419b2015-11-23 07:09:50 -0800212
Ben Wagner145dbcd2016-11-03 14:40:50 -0400213 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
bsalomon7ea33f52015-11-22 14:51:00 -0800214}
215
216#endif