blob: e65954a0c8e4487b588844aadc1ab0e13413996f [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"
12#include "GrContextFactory.h"
Brian Salomond17f6582017-07-19 18:28:58 -040013#include "GrContextPriv.h"
14#include "GrRenderTargetContext.h"
Brian Salomon94efbf52016-11-29 13:43:05 -050015#include "GrShaderCaps.h"
Greg Daniel7ef28f32017-04-20 16:41:55 +000016#include "GrTest.h"
Brian Salomond17f6582017-07-19 18:28:58 -040017#include "GrTextureContext.h"
18#include "gl/GLTestContext.h"
bsalomon7ea33f52015-11-22 14:51:00 -080019#include "gl/GrGLGpu.h"
20#include "gl/GrGLUtil.h"
bsalomon7ea33f52015-11-22 14:51:00 -080021
bsalomon273c0f52016-03-31 10:59:06 -070022using sk_gpu_test::GLTestContext;
bsalomon3724e572016-03-30 18:56:19 -070023
Greg Daniel02611d92017-07-25 10:05:01 -040024static void cleanup(GLTestContext* glctx0, GrGLuint texID0, GLTestContext* glctx1,
Robert Phillipsd21b2a52017-12-12 13:01:25 -050025 sk_sp<GrContext> grctx1, GrBackendTexture* backendTex1,
Greg Daniel02611d92017-07-25 10:05:01 -040026 GrEGLImage image1) {
bsalomon7ea33f52015-11-22 14:51:00 -080027 if (glctx1) {
28 glctx1->makeCurrent();
29 if (grctx1) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -050030 if (backendTex1 && backendTex1->isValid()) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -050031 GrGLGpu* gpu1 = static_cast<GrGLGpu*>(grctx1->contextPriv().getGpu());
Brian Salomon26102cb2018-03-09 09:33:19 -050032 gpu1->deleteTestingOnlyBackendTexture(*backendTex1);
bsalomon7ea33f52015-11-22 14:51:00 -080033 }
bsalomon7ea33f52015-11-22 14:51:00 -080034 }
35 if (GR_EGL_NO_IMAGE != image1) {
36 glctx1->destroyEGLImage(image1);
37 }
bsalomon7ea33f52015-11-22 14:51:00 -080038 }
39
40 glctx0->makeCurrent();
41 if (texID0) {
42 GR_GL_CALL(glctx0->gl(), DeleteTextures(1, &texID0));
43 }
44}
45
bsalomon758586c2016-04-06 14:02:39 -070046DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(EGLImageTest, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070047 GrContext* context0 = ctxInfo.grContext();
48 sk_gpu_test::GLTestContext* glCtx0 = ctxInfo.glContext();
bsalomonf2f1c172016-04-05 12:59:06 -070049
kkinnunen59319222015-11-22 23:23:53 -080050 // Try to create a second GL context and then check if the contexts have necessary
51 // extensions to run this test.
bsalomon7ea33f52015-11-22 14:51:00 -080052
kkinnunen59319222015-11-22 23:23:53 -080053 if (kGLES_GrGLStandard != glCtx0->gl()->fStandard) {
54 return;
bsalomon7ea33f52015-11-22 14:51:00 -080055 }
Robert Phillipsf35fd8d2018-01-22 10:48:15 -050056 GrGLGpu* gpu0 = static_cast<GrGLGpu*>(context0->contextPriv().getGpu());
Brian Salomon1edc5b92016-11-29 13:43:46 -050057 if (!gpu0->glCaps().shaderCaps()->externalTextureSupport()) {
kkinnunen59319222015-11-22 23:23:53 -080058 return;
59 }
60
Ben Wagner145dbcd2016-11-03 14:40:50 -040061 std::unique_ptr<GLTestContext> glCtx1 = glCtx0->makeNew();
kkinnunen59319222015-11-22 23:23:53 -080062 if (!glCtx1) {
63 return;
64 }
Brian Salomon384fab42017-12-07 12:33:05 -050065 sk_sp<GrContext> context1 = GrContext::MakeGL(sk_ref_sp(glCtx1->gl()));
Robert Phillipsd21b2a52017-12-12 13:01:25 -050066 GrBackendTexture backendTexture1;
kkinnunen59319222015-11-22 23:23:53 -080067 GrEGLImage image = GR_EGL_NO_IMAGE;
68 GrGLTextureInfo externalTexture;
69 externalTexture.fID = 0;
70
71 if (!context1) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -050072 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -080073 return;
74 }
75
76 if (!glCtx1->gl()->hasExtension("EGL_KHR_image") ||
77 !glCtx1->gl()->hasExtension("EGL_KHR_gl_texture_2D_image")) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -050078 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -080079 return;
80 }
81
82 ///////////////////////////////// CONTEXT 1 ///////////////////////////////////
83
84 // Use GL Context 1 to create a texture unknown to GrContext.
85 context1->flush();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -050086 GrGpu* gpu1 = context1->contextPriv().getGpu();
kkinnunen59319222015-11-22 23:23:53 -080087 static const int kSize = 100;
Robert Phillipsd21b2a52017-12-12 13:01:25 -050088 backendTexture1 =
89 gpu1->createTestingOnlyBackendTexture(nullptr, kSize, kSize, kRGBA_8888_GrPixelConfig,
90 false, GrMipMapped::kNo);
Greg Daniel5366e592018-01-10 09:57:53 -050091
92 if (!backendTexture1.isValid() || !gpu1->isTestingOnlyBackendTexture(backendTexture1)) {
kkinnunen59319222015-11-22 23:23:53 -080093 ERRORF(reporter, "Error creating texture for EGL Image");
Robert Phillipsd21b2a52017-12-12 13:01:25 -050094 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -080095 return;
96 }
Robert Phillipsd21b2a52017-12-12 13:01:25 -050097
98 const GrGLTextureInfo* texInfo = backendTexture1.getGLTextureInfo();
99
100 if (GR_GL_TEXTURE_2D != texInfo->fTarget) {
kkinnunen59319222015-11-22 23:23:53 -0800101 ERRORF(reporter, "Expected backend texture to be 2D");
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500102 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -0800103 return;
104 }
105
106 // Wrap the texture in an EGLImage
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500107 image = glCtx1->texture2DToEGLImage(texInfo->fID);
kkinnunen59319222015-11-22 23:23:53 -0800108 if (GR_EGL_NO_IMAGE == image) {
109 ERRORF(reporter, "Error creating EGL Image from texture");
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500110 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image);
kkinnunen59319222015-11-22 23:23:53 -0800111 return;
112 }
113
Greg Daniel261b8aa2017-10-23 09:37:36 -0400114 // Since we are dealing with two different GL contexts here, we need to call finish so that the
115 // clearing of the texture that happens in createTextingOnlyBackendTexture occurs before we call
116 // TexSubImage below on the other context. Otherwise, it is possible the calls get reordered and
117 // the clearing overwrites the TexSubImage writes.
118 GR_GL_CALL(glCtx1->gl(), Finish());
119
kkinnunen59319222015-11-22 23:23:53 -0800120 // Populate the texture using GL context 1. Important to use TexSubImage as TexImage orphans
121 // the EGL image. Also, this must be done after creating the EGLImage as the texture
122 // contents may not be preserved when the image is created.
123 SkAutoTMalloc<uint32_t> pixels(kSize * kSize);
124 for (int i = 0; i < kSize*kSize; ++i) {
125 pixels.get()[i] = 0xDDAABBCC;
126 }
127 GR_GL_CALL(glCtx1->gl(), ActiveTexture(GR_GL_TEXTURE0));
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500128 GR_GL_CALL(glCtx1->gl(), BindTexture(texInfo->fTarget, texInfo->fID));
129 GR_GL_CALL(glCtx1->gl(), TexSubImage2D(texInfo->fTarget, 0, 0, 0, kSize, kSize,
kkinnunen59319222015-11-22 23:23:53 -0800130 GR_GL_RGBA, GR_GL_UNSIGNED_BYTE, pixels.get()));
131 GR_GL_CALL(glCtx1->gl(), Finish());
132 // We've been making direct GL calls in GL context 1, let GrContext 1 know its internal
133 // state is invalid.
134 context1->resetContext();
135
136 ///////////////////////////////// CONTEXT 0 ///////////////////////////////////
137
138 // Make a new texture ID in GL Context 0 from the EGL Image
139 glCtx0->makeCurrent();
140 externalTexture.fTarget = GR_GL_TEXTURE_EXTERNAL;
141 externalTexture.fID = glCtx0->eglImageToExternalTexture(image);
Robert Phillipsfee2b4e2017-06-08 18:22:53 -0400142 if (0 == externalTexture.fID) {
143 ERRORF(reporter, "Error converting EGL Image back to texture");
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500144 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image);
Robert Phillipsfee2b4e2017-06-08 18:22:53 -0400145 return;
146 }
kkinnunen59319222015-11-22 23:23:53 -0800147
148 // Wrap this texture ID in a GrTexture
Greg Daniel207282e2017-04-26 13:29:21 -0400149 GrBackendTexture backendTex(kSize, kSize, kRGBA_8888_GrPixelConfig, externalTexture);
Robert Phillipsd46697a2017-01-25 12:10:37 -0500150
Greg Daniel7ef28f32017-04-20 16:41:55 +0000151 // TODO: If I make this TopLeft origin to match resolve_origin calls for kDefault, this test
152 // fails on the Nexus5. Why?
Brian Salomond17f6582017-07-19 18:28:58 -0400153 sk_sp<GrTextureContext> surfaceContext = context0->contextPriv().makeBackendTextureContext(
154 backendTex, kBottomLeft_GrSurfaceOrigin, nullptr);
Robert Phillipsd46697a2017-01-25 12:10:37 -0500155
Robert Phillips26caf892017-01-27 10:58:31 -0500156 if (!surfaceContext) {
157 ERRORF(reporter, "Error wrapping external texture in GrSurfaceContext.");
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500158 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image);
Robert Phillips26caf892017-01-27 10:58:31 -0500159 return;
kkinnunen59319222015-11-22 23:23:53 -0800160 }
161
bsalomona98419b2015-11-23 07:09:50 -0800162 // Should not be able to wrap as a RT
Robert Phillipsd46697a2017-01-25 12:10:37 -0500163 {
Brian Salomond17f6582017-07-19 18:28:58 -0400164 sk_sp<GrRenderTargetContext> temp =
165 context0->contextPriv().makeBackendTextureRenderTargetContext(
Brian Salomonbdecacf2018-02-02 20:32:49 -0500166 backendTex, kBottomLeft_GrSurfaceOrigin, 1, nullptr);
Robert Phillips26caf892017-01-27 10:58:31 -0500167 if (temp) {
Robert Phillipsd46697a2017-01-25 12:10:37 -0500168 ERRORF(reporter, "Should not be able to wrap an EXTERNAL texture as a RT.");
169 }
kkinnunen59319222015-11-22 23:23:53 -0800170 }
bsalomona98419b2015-11-23 07:09:50 -0800171
Robert Phillips26c90e02017-03-14 14:39:29 -0400172 test_read_pixels(reporter, surfaceContext.get(), pixels.get(), "EGLImageTest-read");
bsalomona98419b2015-11-23 07:09:50 -0800173
Robert Phillips3500b772017-01-27 10:11:42 -0500174 // We should not be able to write to a EXTERNAL texture
Robert Phillips26c90e02017-03-14 14:39:29 -0400175 test_write_pixels(reporter, surfaceContext.get(), false, "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
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500182 cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image);
bsalomon7ea33f52015-11-22 14:51:00 -0800183}
184
185#endif