blob: 5ea5b3d22d9803177d955f451345453fea835898 [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"
Robert Phillips3500b772017-01-27 10:11:42 -05009#include "TestUtils.h"
bsalomon7ea33f52015-11-22 14:51:00 -080010#if SK_SUPPORT_GPU
11#include "GrContext.h"
Robert Phillipsd46697a2017-01-25 12:10:37 -050012#include "GrContextPriv.h"
bsalomon7ea33f52015-11-22 14:51:00 -080013#include "GrContextFactory.h"
Brian Salomon94efbf52016-11-29 13:43:05 -050014#include "GrShaderCaps.h"
Robert Phillipse2f7d182016-12-15 09:23:05 -050015#include "GrSurfaceContext.h"
bsalomon7ea33f52015-11-22 14:51:00 -080016#include "gl/GrGLGpu.h"
17#include "gl/GrGLUtil.h"
bsalomon273c0f52016-03-31 10:59:06 -070018#include "gl/GLTestContext.h"
bsalomon7ea33f52015-11-22 14:51:00 -080019
bsalomon273c0f52016-03-31 10:59:06 -070020using sk_gpu_test::GLTestContext;
bsalomon3724e572016-03-30 18:56:19 -070021
bsalomon273c0f52016-03-31 10:59:06 -070022static void cleanup(GLTestContext* glctx0, GrGLuint texID0, GLTestContext* glctx1, GrContext* grctx1,
bsalomon7ea33f52015-11-22 14:51:00 -080023 const GrGLTextureInfo* grbackendtex1, GrEGLImage image1) {
24 if (glctx1) {
25 glctx1->makeCurrent();
26 if (grctx1) {
27 if (grbackendtex1) {
28 GrGLGpu* gpu1 = static_cast<GrGLGpu*>(grctx1->getGpu());
29 GrBackendObject handle = reinterpret_cast<GrBackendObject>(grbackendtex1);
30 gpu1->deleteTestingOnlyBackendTexture(handle, false);
31 }
32 grctx1->unref();
33 }
34 if (GR_EGL_NO_IMAGE != image1) {
35 glctx1->destroyEGLImage(image1);
36 }
bsalomon7ea33f52015-11-22 14:51:00 -080037 }
38
39 glctx0->makeCurrent();
40 if (texID0) {
41 GR_GL_CALL(glctx0->gl(), DeleteTextures(1, &texID0));
42 }
43}
44
bsalomon758586c2016-04-06 14:02:39 -070045DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(EGLImageTest, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070046 GrContext* context0 = ctxInfo.grContext();
47 sk_gpu_test::GLTestContext* glCtx0 = ctxInfo.glContext();
bsalomonf2f1c172016-04-05 12:59:06 -070048
kkinnunen59319222015-11-22 23:23:53 -080049 // Try to create a second GL context and then check if the contexts have necessary
50 // extensions to run this test.
bsalomon7ea33f52015-11-22 14:51:00 -080051
kkinnunen59319222015-11-22 23:23:53 -080052 if (kGLES_GrGLStandard != glCtx0->gl()->fStandard) {
53 return;
bsalomon7ea33f52015-11-22 14:51:00 -080054 }
kkinnunen59319222015-11-22 23:23:53 -080055 GrGLGpu* gpu0 = static_cast<GrGLGpu*>(context0->getGpu());
Brian Salomon1edc5b92016-11-29 13:43:46 -050056 if (!gpu0->glCaps().shaderCaps()->externalTextureSupport()) {
kkinnunen59319222015-11-22 23:23:53 -080057 return;
58 }
59
Ben Wagner145dbcd2016-11-03 14:40:50 -040060 std::unique_ptr<GLTestContext> glCtx1 = glCtx0->makeNew();
kkinnunen59319222015-11-22 23:23:53 -080061 if (!glCtx1) {
62 return;
63 }
64 GrContext* context1 = GrContext::Create(kOpenGL_GrBackend, (GrBackendContext)glCtx1->gl());
65 const GrGLTextureInfo* backendTexture1 = nullptr;
66 GrEGLImage image = GR_EGL_NO_IMAGE;
67 GrGLTextureInfo externalTexture;
68 externalTexture.fID = 0;
69
70 if (!context1) {
Ben Wagner145dbcd2016-11-03 14:40:50 -040071 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -080072 return;
73 }
74
75 if (!glCtx1->gl()->hasExtension("EGL_KHR_image") ||
76 !glCtx1->gl()->hasExtension("EGL_KHR_gl_texture_2D_image")) {
Ben Wagner145dbcd2016-11-03 14:40:50 -040077 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -080078 return;
79 }
80
81 ///////////////////////////////// CONTEXT 1 ///////////////////////////////////
82
83 // Use GL Context 1 to create a texture unknown to GrContext.
84 context1->flush();
85 GrGpu* gpu1 = context1->getGpu();
86 static const int kSize = 100;
87 backendTexture1 = reinterpret_cast<const GrGLTextureInfo*>(
88 gpu1->createTestingOnlyBackendTexture(nullptr, kSize, kSize, kRGBA_8888_GrPixelConfig));
89 if (!backendTexture1 || !backendTexture1->fID) {
90 ERRORF(reporter, "Error creating texture for EGL Image");
Ben Wagner145dbcd2016-11-03 14:40:50 -040091 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -080092 return;
93 }
94 if (GR_GL_TEXTURE_2D != backendTexture1->fTarget) {
95 ERRORF(reporter, "Expected backend texture to be 2D");
Ben Wagner145dbcd2016-11-03 14:40:50 -040096 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -080097 return;
98 }
99
100 // Wrap the texture in an EGLImage
101 image = glCtx1->texture2DToEGLImage(backendTexture1->fID);
102 if (GR_EGL_NO_IMAGE == image) {
103 ERRORF(reporter, "Error creating EGL Image from texture");
Ben Wagner145dbcd2016-11-03 14:40:50 -0400104 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -0800105 return;
106 }
107
108 // Populate the texture using GL context 1. Important to use TexSubImage as TexImage orphans
109 // the EGL image. Also, this must be done after creating the EGLImage as the texture
110 // contents may not be preserved when the image is created.
111 SkAutoTMalloc<uint32_t> pixels(kSize * kSize);
112 for (int i = 0; i < kSize*kSize; ++i) {
113 pixels.get()[i] = 0xDDAABBCC;
114 }
115 GR_GL_CALL(glCtx1->gl(), ActiveTexture(GR_GL_TEXTURE0));
116 GR_GL_CALL(glCtx1->gl(), BindTexture(backendTexture1->fTarget, backendTexture1->fID));
117 GR_GL_CALL(glCtx1->gl(), TexSubImage2D(backendTexture1->fTarget, 0, 0, 0, kSize, kSize,
118 GR_GL_RGBA, GR_GL_UNSIGNED_BYTE, pixels.get()));
119 GR_GL_CALL(glCtx1->gl(), Finish());
120 // We've been making direct GL calls in GL context 1, let GrContext 1 know its internal
121 // state is invalid.
122 context1->resetContext();
123
124 ///////////////////////////////// CONTEXT 0 ///////////////////////////////////
125
126 // Make a new texture ID in GL Context 0 from the EGL Image
127 glCtx0->makeCurrent();
128 externalTexture.fTarget = GR_GL_TEXTURE_EXTERNAL;
129 externalTexture.fID = glCtx0->eglImageToExternalTexture(image);
130
131 // Wrap this texture ID in a GrTexture
132 GrBackendTextureDesc externalDesc;
133 externalDesc.fConfig = kRGBA_8888_GrPixelConfig;
134 externalDesc.fWidth = kSize;
135 externalDesc.fHeight = kSize;
136 externalDesc.fTextureHandle = reinterpret_cast<GrBackendObject>(&externalTexture);
Robert Phillipsd46697a2017-01-25 12:10:37 -0500137
Robert Phillips26caf892017-01-27 10:58:31 -0500138 sk_sp<GrSurfaceContext> surfaceContext = context0->contextPriv().makeBackendSurfaceContext(
139 externalDesc, nullptr);
Robert Phillipsd46697a2017-01-25 12:10:37 -0500140
Robert Phillips26caf892017-01-27 10:58:31 -0500141 if (!surfaceContext) {
142 ERRORF(reporter, "Error wrapping external texture in GrSurfaceContext.");
143 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
144 return;
kkinnunen59319222015-11-22 23:23:53 -0800145 }
146
bsalomona98419b2015-11-23 07:09:50 -0800147 // Should not be able to wrap as a RT
Robert Phillipsd46697a2017-01-25 12:10:37 -0500148 {
149 externalDesc.fFlags = kRenderTarget_GrBackendTextureFlag;
Robert Phillips26caf892017-01-27 10:58:31 -0500150
151 sk_sp<GrSurfaceContext> temp = context0->contextPriv().makeBackendSurfaceContext(
152 externalDesc, nullptr);
153 if (temp) {
Robert Phillipsd46697a2017-01-25 12:10:37 -0500154 ERRORF(reporter, "Should not be able to wrap an EXTERNAL texture as a RT.");
155 }
156 externalDesc.fFlags = kNone_GrBackendTextureFlag;
kkinnunen59319222015-11-22 23:23:53 -0800157 }
bsalomona98419b2015-11-23 07:09:50 -0800158
159 // Should not be able to wrap with a sample count
Robert Phillipsd46697a2017-01-25 12:10:37 -0500160 {
161 externalDesc.fSampleCnt = 4;
Robert Phillips26caf892017-01-27 10:58:31 -0500162 sk_sp<GrSurfaceContext> temp = context0->contextPriv().makeBackendSurfaceContext(
163 externalDesc, nullptr);
164 if (temp) {
Robert Phillipsd46697a2017-01-25 12:10:37 -0500165 ERRORF(reporter, "Should not be able to wrap an EXTERNAL texture with MSAA.");
166 }
167 externalDesc.fSampleCnt = 0;
kkinnunen59319222015-11-22 23:23:53 -0800168 }
bsalomona98419b2015-11-23 07:09:50 -0800169
Robert Phillips26caf892017-01-27 10:58:31 -0500170 test_read_pixels(reporter, context0, surfaceContext.get(), pixels.get(),
Robert Phillips3500b772017-01-27 10:11:42 -0500171 "EGLImageTest-read");
bsalomona98419b2015-11-23 07:09:50 -0800172
Robert Phillips3500b772017-01-27 10:11:42 -0500173 // We should not be able to write to a EXTERNAL texture
Robert Phillips26caf892017-01-27 10:58:31 -0500174 test_write_pixels(reporter, context0, surfaceContext.get(), false,
Robert Phillips3500b772017-01-27 10:11:42 -0500175 "EGLImageTest-write");
bsalomona98419b2015-11-23 07:09:50 -0800176
Robert Phillips3500b772017-01-27 10:11:42 -0500177 // Only test RT-config
178 // TODO: why do we always need to draw to copy from an external texture?
Robert Phillipsf200a902017-01-30 13:27:37 -0500179 test_copy_from_surface(reporter, context0, surfaceContext->asSurfaceProxy(),
Robert Phillips3500b772017-01-27 10:11:42 -0500180 pixels.get(), true, "EGLImageTest-copy");
bsalomona98419b2015-11-23 07:09:50 -0800181
Ben Wagner145dbcd2016-11-03 14:40:50 -0400182 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image);
bsalomon7ea33f52015-11-22 14:51:00 -0800183}
184
185#endif