bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 1 | /* |
| 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 Phillips | 3500b77 | 2017-01-27 10:11:42 -0500 | [diff] [blame] | 9 | #include "TestUtils.h" |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 10 | #include "GrContext.h" |
| 11 | #include "GrContextFactory.h" |
Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 12 | #include "GrContextPriv.h" |
| 13 | #include "GrRenderTargetContext.h" |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 14 | #include "GrShaderCaps.h" |
Robert Phillips | abf7b76 | 2018-03-21 12:13:37 -0400 | [diff] [blame] | 15 | #include "GrSurfacePriv.h" |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 16 | #include "GrTest.h" |
Robert Phillips | abf7b76 | 2018-03-21 12:13:37 -0400 | [diff] [blame] | 17 | #include "GrTexture.h" |
Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 18 | #include "GrTextureContext.h" |
Greg Daniel | 09c9400 | 2018-06-08 22:11:51 +0000 | [diff] [blame] | 19 | #include "GrTexturePriv.h" |
Robert Phillips | abf7b76 | 2018-03-21 12:13:37 -0400 | [diff] [blame] | 20 | #include "GrTextureProxyPriv.h" |
Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 21 | #include "gl/GLTestContext.h" |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 22 | #include "gl/GrGLGpu.h" |
| 23 | #include "gl/GrGLUtil.h" |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 24 | |
bsalomon | 273c0f5 | 2016-03-31 10:59:06 -0700 | [diff] [blame] | 25 | using sk_gpu_test::GLTestContext; |
bsalomon | 3724e57 | 2016-03-30 18:56:19 -0700 | [diff] [blame] | 26 | |
Greg Daniel | 02611d9 | 2017-07-25 10:05:01 -0400 | [diff] [blame] | 27 | static void cleanup(GLTestContext* glctx0, GrGLuint texID0, GLTestContext* glctx1, |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 28 | sk_sp<GrContext> grctx1, GrBackendTexture* backendTex1, |
Greg Daniel | 02611d9 | 2017-07-25 10:05:01 -0400 | [diff] [blame] | 29 | GrEGLImage image1) { |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 30 | if (glctx1) { |
| 31 | glctx1->makeCurrent(); |
| 32 | if (grctx1) { |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 33 | if (backendTex1 && backendTex1->isValid()) { |
Robert Phillips | f35fd8d | 2018-01-22 10:48:15 -0500 | [diff] [blame] | 34 | GrGLGpu* gpu1 = static_cast<GrGLGpu*>(grctx1->contextPriv().getGpu()); |
Brian Salomon | 26102cb | 2018-03-09 09:33:19 -0500 | [diff] [blame] | 35 | gpu1->deleteTestingOnlyBackendTexture(*backendTex1); |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 36 | } |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 37 | } |
| 38 | if (GR_EGL_NO_IMAGE != image1) { |
| 39 | glctx1->destroyEGLImage(image1); |
| 40 | } |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | glctx0->makeCurrent(); |
| 44 | if (texID0) { |
| 45 | GR_GL_CALL(glctx0->gl(), DeleteTextures(1, &texID0)); |
| 46 | } |
| 47 | } |
| 48 | |
bsalomon | 758586c | 2016-04-06 14:02:39 -0700 | [diff] [blame] | 49 | DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(EGLImageTest, reporter, ctxInfo) { |
bsalomon | 8b7451a | 2016-05-11 06:33:06 -0700 | [diff] [blame] | 50 | GrContext* context0 = ctxInfo.grContext(); |
| 51 | sk_gpu_test::GLTestContext* glCtx0 = ctxInfo.glContext(); |
bsalomon | f2f1c17 | 2016-04-05 12:59:06 -0700 | [diff] [blame] | 52 | |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 53 | // Try to create a second GL context and then check if the contexts have necessary |
| 54 | // extensions to run this test. |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 55 | |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 56 | if (kGLES_GrGLStandard != glCtx0->gl()->fStandard) { |
| 57 | return; |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 58 | } |
Robert Phillips | f35fd8d | 2018-01-22 10:48:15 -0500 | [diff] [blame] | 59 | GrGLGpu* gpu0 = static_cast<GrGLGpu*>(context0->contextPriv().getGpu()); |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 60 | if (!gpu0->glCaps().shaderCaps()->externalTextureSupport()) { |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 61 | return; |
| 62 | } |
| 63 | |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 64 | std::unique_ptr<GLTestContext> glCtx1 = glCtx0->makeNew(); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 65 | if (!glCtx1) { |
| 66 | return; |
| 67 | } |
Brian Salomon | 384fab4 | 2017-12-07 12:33:05 -0500 | [diff] [blame] | 68 | sk_sp<GrContext> context1 = GrContext::MakeGL(sk_ref_sp(glCtx1->gl())); |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 69 | GrBackendTexture backendTexture1; |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 70 | GrEGLImage image = GR_EGL_NO_IMAGE; |
| 71 | GrGLTextureInfo externalTexture; |
| 72 | externalTexture.fID = 0; |
| 73 | |
| 74 | if (!context1) { |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 75 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 76 | return; |
| 77 | } |
| 78 | |
| 79 | if (!glCtx1->gl()->hasExtension("EGL_KHR_image") || |
| 80 | !glCtx1->gl()->hasExtension("EGL_KHR_gl_texture_2D_image")) { |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 81 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 82 | return; |
| 83 | } |
| 84 | |
| 85 | ///////////////////////////////// CONTEXT 1 /////////////////////////////////// |
| 86 | |
| 87 | // Use GL Context 1 to create a texture unknown to GrContext. |
| 88 | context1->flush(); |
Robert Phillips | f35fd8d | 2018-01-22 10:48:15 -0500 | [diff] [blame] | 89 | GrGpu* gpu1 = context1->contextPriv().getGpu(); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 90 | static const int kSize = 100; |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 91 | backendTexture1 = |
| 92 | gpu1->createTestingOnlyBackendTexture(nullptr, kSize, kSize, kRGBA_8888_GrPixelConfig, |
| 93 | false, GrMipMapped::kNo); |
Greg Daniel | 5366e59 | 2018-01-10 09:57:53 -0500 | [diff] [blame] | 94 | |
| 95 | if (!backendTexture1.isValid() || !gpu1->isTestingOnlyBackendTexture(backendTexture1)) { |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 96 | ERRORF(reporter, "Error creating texture for EGL Image"); |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 97 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 98 | return; |
| 99 | } |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 100 | |
Greg Daniel | 52e16d9 | 2018-04-10 09:34:07 -0400 | [diff] [blame] | 101 | GrGLTextureInfo texInfo; |
| 102 | if (!backendTexture1.getGLTextureInfo(&texInfo)) { |
| 103 | ERRORF(reporter, "Failed to get GrGLTextureInfo"); |
| 104 | return; |
| 105 | } |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 106 | |
Greg Daniel | 52e16d9 | 2018-04-10 09:34:07 -0400 | [diff] [blame] | 107 | if (GR_GL_TEXTURE_2D != texInfo.fTarget) { |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 108 | ERRORF(reporter, "Expected backend texture to be 2D"); |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 109 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 110 | return; |
| 111 | } |
| 112 | |
| 113 | // Wrap the texture in an EGLImage |
Greg Daniel | 52e16d9 | 2018-04-10 09:34:07 -0400 | [diff] [blame] | 114 | image = glCtx1->texture2DToEGLImage(texInfo.fID); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 115 | if (GR_EGL_NO_IMAGE == image) { |
| 116 | ERRORF(reporter, "Error creating EGL Image from texture"); |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 117 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 118 | return; |
| 119 | } |
| 120 | |
Greg Daniel | 261b8aa | 2017-10-23 09:37:36 -0400 | [diff] [blame] | 121 | // Since we are dealing with two different GL contexts here, we need to call finish so that the |
| 122 | // clearing of the texture that happens in createTextingOnlyBackendTexture occurs before we call |
| 123 | // TexSubImage below on the other context. Otherwise, it is possible the calls get reordered and |
| 124 | // the clearing overwrites the TexSubImage writes. |
| 125 | GR_GL_CALL(glCtx1->gl(), Finish()); |
| 126 | |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 127 | // Populate the texture using GL context 1. Important to use TexSubImage as TexImage orphans |
| 128 | // the EGL image. Also, this must be done after creating the EGLImage as the texture |
| 129 | // contents may not be preserved when the image is created. |
| 130 | SkAutoTMalloc<uint32_t> pixels(kSize * kSize); |
| 131 | for (int i = 0; i < kSize*kSize; ++i) { |
| 132 | pixels.get()[i] = 0xDDAABBCC; |
| 133 | } |
| 134 | GR_GL_CALL(glCtx1->gl(), ActiveTexture(GR_GL_TEXTURE0)); |
Greg Daniel | 52e16d9 | 2018-04-10 09:34:07 -0400 | [diff] [blame] | 135 | GR_GL_CALL(glCtx1->gl(), BindTexture(texInfo.fTarget, texInfo.fID)); |
| 136 | GR_GL_CALL(glCtx1->gl(), TexSubImage2D(texInfo.fTarget, 0, 0, 0, kSize, kSize, |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 137 | GR_GL_RGBA, GR_GL_UNSIGNED_BYTE, pixels.get())); |
| 138 | GR_GL_CALL(glCtx1->gl(), Finish()); |
| 139 | // We've been making direct GL calls in GL context 1, let GrContext 1 know its internal |
| 140 | // state is invalid. |
| 141 | context1->resetContext(); |
| 142 | |
| 143 | ///////////////////////////////// CONTEXT 0 /////////////////////////////////// |
| 144 | |
| 145 | // Make a new texture ID in GL Context 0 from the EGL Image |
| 146 | glCtx0->makeCurrent(); |
| 147 | externalTexture.fTarget = GR_GL_TEXTURE_EXTERNAL; |
| 148 | externalTexture.fID = glCtx0->eglImageToExternalTexture(image); |
Robert Phillips | fee2b4e | 2017-06-08 18:22:53 -0400 | [diff] [blame] | 149 | if (0 == externalTexture.fID) { |
| 150 | ERRORF(reporter, "Error converting EGL Image back to texture"); |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 151 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image); |
Robert Phillips | fee2b4e | 2017-06-08 18:22:53 -0400 | [diff] [blame] | 152 | return; |
| 153 | } |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 154 | |
| 155 | // Wrap this texture ID in a GrTexture |
Greg Daniel | 108bb23 | 2018-07-03 16:18:29 -0400 | [diff] [blame] | 156 | GrBackendTexture backendTex(kSize, kSize, GrMipMapped::kNo, externalTexture); |
| 157 | backendTex.setPixelConfig(kRGBA_8888_GrPixelConfig); |
Robert Phillips | d46697a | 2017-01-25 12:10:37 -0500 | [diff] [blame] | 158 | |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 159 | // TODO: If I make this TopLeft origin to match resolve_origin calls for kDefault, this test |
| 160 | // fails on the Nexus5. Why? |
Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 161 | sk_sp<GrTextureContext> surfaceContext = context0->contextPriv().makeBackendTextureContext( |
| 162 | backendTex, kBottomLeft_GrSurfaceOrigin, nullptr); |
Robert Phillips | d46697a | 2017-01-25 12:10:37 -0500 | [diff] [blame] | 163 | |
Robert Phillips | 26caf89 | 2017-01-27 10:58:31 -0500 | [diff] [blame] | 164 | if (!surfaceContext) { |
| 165 | ERRORF(reporter, "Error wrapping external texture in GrSurfaceContext."); |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 166 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image); |
Robert Phillips | 26caf89 | 2017-01-27 10:58:31 -0500 | [diff] [blame] | 167 | return; |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 168 | } |
| 169 | |
Robert Phillips | abf7b76 | 2018-03-21 12:13:37 -0400 | [diff] [blame] | 170 | GrTextureProxy* proxy = surfaceContext->asTextureProxy(); |
Greg Daniel | 09c9400 | 2018-06-08 22:11:51 +0000 | [diff] [blame] | 171 | REPORTER_ASSERT(reporter, proxy->mipMapped() == GrMipMapped::kNo); |
Brian Salomon | fd98c2c | 2018-07-31 17:25:29 -0400 | [diff] [blame] | 172 | REPORTER_ASSERT(reporter, proxy->peekTexture()->texturePriv().mipMapped() == GrMipMapped::kNo); |
Robert Phillips | abf7b76 | 2018-03-21 12:13:37 -0400 | [diff] [blame] | 173 | |
Brian Salomon | fd98c2c | 2018-07-31 17:25:29 -0400 | [diff] [blame] | 174 | REPORTER_ASSERT(reporter, proxy->textureType() == GrTextureType::kExternal); |
| 175 | REPORTER_ASSERT(reporter, |
| 176 | proxy->peekTexture()->texturePriv().textureType() == GrTextureType::kExternal); |
| 177 | REPORTER_ASSERT(reporter, proxy->hasRestrictedSampling()); |
| 178 | REPORTER_ASSERT(reporter, proxy->peekTexture()->texturePriv().hasRestrictedSampling()); |
Robert Phillips | abf7b76 | 2018-03-21 12:13:37 -0400 | [diff] [blame] | 179 | |
bsalomon | a98419b | 2015-11-23 07:09:50 -0800 | [diff] [blame] | 180 | // Should not be able to wrap as a RT |
Robert Phillips | d46697a | 2017-01-25 12:10:37 -0500 | [diff] [blame] | 181 | { |
Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 182 | sk_sp<GrRenderTargetContext> temp = |
| 183 | context0->contextPriv().makeBackendTextureRenderTargetContext( |
Brian Salomon | bdecacf | 2018-02-02 20:32:49 -0500 | [diff] [blame] | 184 | backendTex, kBottomLeft_GrSurfaceOrigin, 1, nullptr); |
Robert Phillips | 26caf89 | 2017-01-27 10:58:31 -0500 | [diff] [blame] | 185 | if (temp) { |
Robert Phillips | d46697a | 2017-01-25 12:10:37 -0500 | [diff] [blame] | 186 | ERRORF(reporter, "Should not be able to wrap an EXTERNAL texture as a RT."); |
| 187 | } |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 188 | } |
bsalomon | a98419b | 2015-11-23 07:09:50 -0800 | [diff] [blame] | 189 | |
Robert Phillips | 26c90e0 | 2017-03-14 14:39:29 -0400 | [diff] [blame] | 190 | test_read_pixels(reporter, surfaceContext.get(), pixels.get(), "EGLImageTest-read"); |
bsalomon | a98419b | 2015-11-23 07:09:50 -0800 | [diff] [blame] | 191 | |
Robert Phillips | 3500b77 | 2017-01-27 10:11:42 -0500 | [diff] [blame] | 192 | // We should not be able to write to a EXTERNAL texture |
Robert Phillips | 26c90e0 | 2017-03-14 14:39:29 -0400 | [diff] [blame] | 193 | test_write_pixels(reporter, surfaceContext.get(), false, "EGLImageTest-write"); |
bsalomon | a98419b | 2015-11-23 07:09:50 -0800 | [diff] [blame] | 194 | |
Robert Phillips | 3500b77 | 2017-01-27 10:11:42 -0500 | [diff] [blame] | 195 | // Only test RT-config |
| 196 | // TODO: why do we always need to draw to copy from an external texture? |
Robert Phillips | f200a90 | 2017-01-30 13:27:37 -0500 | [diff] [blame] | 197 | test_copy_from_surface(reporter, context0, surfaceContext->asSurfaceProxy(), |
Robert Phillips | 3500b77 | 2017-01-27 10:11:42 -0500 | [diff] [blame] | 198 | pixels.get(), true, "EGLImageTest-copy"); |
bsalomon | a98419b | 2015-11-23 07:09:50 -0800 | [diff] [blame] | 199 | |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 200 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, &backendTexture1, image); |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 201 | } |