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 | #if SK_SUPPORT_GPU |
| 11 | #include "GrContext.h" |
Robert Phillips | d46697a | 2017-01-25 12:10:37 -0500 | [diff] [blame] | 12 | #include "GrContextPriv.h" |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 13 | #include "GrContextFactory.h" |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 14 | #include "GrShaderCaps.h" |
Robert Phillips | e2f7d18 | 2016-12-15 09:23:05 -0500 | [diff] [blame] | 15 | #include "GrSurfaceContext.h" |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 16 | #include "GrTest.h" |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 17 | #include "gl/GrGLGpu.h" |
| 18 | #include "gl/GrGLUtil.h" |
bsalomon | 273c0f5 | 2016-03-31 10:59:06 -0700 | [diff] [blame] | 19 | #include "gl/GLTestContext.h" |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 20 | |
bsalomon | 273c0f5 | 2016-03-31 10:59:06 -0700 | [diff] [blame] | 21 | using sk_gpu_test::GLTestContext; |
bsalomon | 3724e57 | 2016-03-30 18:56:19 -0700 | [diff] [blame] | 22 | |
bsalomon | 273c0f5 | 2016-03-31 10:59:06 -0700 | [diff] [blame] | 23 | static void cleanup(GLTestContext* glctx0, GrGLuint texID0, GLTestContext* glctx1, GrContext* grctx1, |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 24 | const GrGLTextureInfo* grbackendtex1, GrEGLImage image1) { |
| 25 | if (glctx1) { |
| 26 | glctx1->makeCurrent(); |
| 27 | if (grctx1) { |
| 28 | if (grbackendtex1) { |
| 29 | GrGLGpu* gpu1 = static_cast<GrGLGpu*>(grctx1->getGpu()); |
| 30 | GrBackendObject handle = reinterpret_cast<GrBackendObject>(grbackendtex1); |
| 31 | gpu1->deleteTestingOnlyBackendTexture(handle, false); |
| 32 | } |
| 33 | grctx1->unref(); |
| 34 | } |
| 35 | if (GR_EGL_NO_IMAGE != image1) { |
| 36 | glctx1->destroyEGLImage(image1); |
| 37 | } |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | glctx0->makeCurrent(); |
| 41 | if (texID0) { |
| 42 | GR_GL_CALL(glctx0->gl(), DeleteTextures(1, &texID0)); |
| 43 | } |
| 44 | } |
| 45 | |
bsalomon | 758586c | 2016-04-06 14:02:39 -0700 | [diff] [blame] | 46 | DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(EGLImageTest, reporter, ctxInfo) { |
bsalomon | 8b7451a | 2016-05-11 06:33:06 -0700 | [diff] [blame] | 47 | GrContext* context0 = ctxInfo.grContext(); |
| 48 | sk_gpu_test::GLTestContext* glCtx0 = ctxInfo.glContext(); |
bsalomon | f2f1c17 | 2016-04-05 12:59:06 -0700 | [diff] [blame] | 49 | |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 50 | // Try to create a second GL context and then check if the contexts have necessary |
| 51 | // extensions to run this test. |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 52 | |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 53 | if (kGLES_GrGLStandard != glCtx0->gl()->fStandard) { |
| 54 | return; |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 55 | } |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 56 | GrGLGpu* gpu0 = static_cast<GrGLGpu*>(context0->getGpu()); |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 57 | if (!gpu0->glCaps().shaderCaps()->externalTextureSupport()) { |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 58 | return; |
| 59 | } |
| 60 | |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 61 | std::unique_ptr<GLTestContext> glCtx1 = glCtx0->makeNew(); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 62 | if (!glCtx1) { |
| 63 | return; |
| 64 | } |
| 65 | GrContext* context1 = GrContext::Create(kOpenGL_GrBackend, (GrBackendContext)glCtx1->gl()); |
| 66 | const GrGLTextureInfo* backendTexture1 = nullptr; |
| 67 | GrEGLImage image = GR_EGL_NO_IMAGE; |
| 68 | GrGLTextureInfo externalTexture; |
| 69 | externalTexture.fID = 0; |
| 70 | |
| 71 | if (!context1) { |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 72 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 73 | return; |
| 74 | } |
| 75 | |
| 76 | if (!glCtx1->gl()->hasExtension("EGL_KHR_image") || |
| 77 | !glCtx1->gl()->hasExtension("EGL_KHR_gl_texture_2D_image")) { |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 78 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 79 | return; |
| 80 | } |
| 81 | |
| 82 | ///////////////////////////////// CONTEXT 1 /////////////////////////////////// |
| 83 | |
| 84 | // Use GL Context 1 to create a texture unknown to GrContext. |
| 85 | context1->flush(); |
| 86 | GrGpu* gpu1 = context1->getGpu(); |
| 87 | static const int kSize = 100; |
| 88 | backendTexture1 = reinterpret_cast<const GrGLTextureInfo*>( |
| 89 | gpu1->createTestingOnlyBackendTexture(nullptr, kSize, kSize, kRGBA_8888_GrPixelConfig)); |
| 90 | if (!backendTexture1 || !backendTexture1->fID) { |
| 91 | ERRORF(reporter, "Error creating texture for EGL Image"); |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 92 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 93 | return; |
| 94 | } |
| 95 | if (GR_GL_TEXTURE_2D != backendTexture1->fTarget) { |
| 96 | ERRORF(reporter, "Expected backend texture to be 2D"); |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [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 | } |
| 100 | |
| 101 | // Wrap the texture in an EGLImage |
| 102 | image = glCtx1->texture2DToEGLImage(backendTexture1->fID); |
| 103 | if (GR_EGL_NO_IMAGE == image) { |
| 104 | ERRORF(reporter, "Error creating EGL Image from texture"); |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 105 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image); |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 106 | return; |
| 107 | } |
| 108 | |
| 109 | // Populate the texture using GL context 1. Important to use TexSubImage as TexImage orphans |
| 110 | // the EGL image. Also, this must be done after creating the EGLImage as the texture |
| 111 | // contents may not be preserved when the image is created. |
| 112 | SkAutoTMalloc<uint32_t> pixels(kSize * kSize); |
| 113 | for (int i = 0; i < kSize*kSize; ++i) { |
| 114 | pixels.get()[i] = 0xDDAABBCC; |
| 115 | } |
| 116 | GR_GL_CALL(glCtx1->gl(), ActiveTexture(GR_GL_TEXTURE0)); |
| 117 | GR_GL_CALL(glCtx1->gl(), BindTexture(backendTexture1->fTarget, backendTexture1->fID)); |
| 118 | GR_GL_CALL(glCtx1->gl(), TexSubImage2D(backendTexture1->fTarget, 0, 0, 0, kSize, kSize, |
| 119 | GR_GL_RGBA, GR_GL_UNSIGNED_BYTE, pixels.get())); |
| 120 | GR_GL_CALL(glCtx1->gl(), Finish()); |
| 121 | // We've been making direct GL calls in GL context 1, let GrContext 1 know its internal |
| 122 | // state is invalid. |
| 123 | context1->resetContext(); |
| 124 | |
| 125 | ///////////////////////////////// CONTEXT 0 /////////////////////////////////// |
| 126 | |
| 127 | // Make a new texture ID in GL Context 0 from the EGL Image |
| 128 | glCtx0->makeCurrent(); |
| 129 | externalTexture.fTarget = GR_GL_TEXTURE_EXTERNAL; |
| 130 | externalTexture.fID = glCtx0->eglImageToExternalTexture(image); |
Robert Phillips | fee2b4e | 2017-06-08 18:22:53 -0400 | [diff] [blame] | 131 | if (0 == externalTexture.fID) { |
| 132 | ERRORF(reporter, "Error converting EGL Image back to texture"); |
| 133 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image); |
| 134 | return; |
| 135 | } |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 136 | |
| 137 | // Wrap this texture ID in a GrTexture |
Greg Daniel | 207282e | 2017-04-26 13:29:21 -0400 | [diff] [blame] | 138 | GrBackendTexture backendTex(kSize, kSize, kRGBA_8888_GrPixelConfig, externalTexture); |
Robert Phillips | d46697a | 2017-01-25 12:10:37 -0500 | [diff] [blame] | 139 | |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 140 | // TODO: If I make this TopLeft origin to match resolve_origin calls for kDefault, this test |
| 141 | // fails on the Nexus5. Why? |
Robert Phillips | 26caf89 | 2017-01-27 10:58:31 -0500 | [diff] [blame] | 142 | sk_sp<GrSurfaceContext> surfaceContext = context0->contextPriv().makeBackendSurfaceContext( |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 143 | backendTex, kBottomLeft_GrSurfaceOrigin, kNone_GrBackendTextureFlag, 0, nullptr); |
Robert Phillips | d46697a | 2017-01-25 12:10:37 -0500 | [diff] [blame] | 144 | |
Robert Phillips | 26caf89 | 2017-01-27 10:58:31 -0500 | [diff] [blame] | 145 | if (!surfaceContext) { |
| 146 | ERRORF(reporter, "Error wrapping external texture in GrSurfaceContext."); |
| 147 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image); |
| 148 | return; |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 149 | } |
| 150 | |
bsalomon | a98419b | 2015-11-23 07:09:50 -0800 | [diff] [blame] | 151 | // Should not be able to wrap as a RT |
Robert Phillips | d46697a | 2017-01-25 12:10:37 -0500 | [diff] [blame] | 152 | { |
Robert Phillips | 26caf89 | 2017-01-27 10:58:31 -0500 | [diff] [blame] | 153 | sk_sp<GrSurfaceContext> temp = context0->contextPriv().makeBackendSurfaceContext( |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 154 | backendTex, kBottomLeft_GrSurfaceOrigin, kRenderTarget_GrBackendTextureFlag, 0, |
| 155 | nullptr); |
Robert Phillips | 26caf89 | 2017-01-27 10:58:31 -0500 | [diff] [blame] | 156 | if (temp) { |
Robert Phillips | d46697a | 2017-01-25 12:10:37 -0500 | [diff] [blame] | 157 | ERRORF(reporter, "Should not be able to wrap an EXTERNAL texture as a RT."); |
| 158 | } |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 159 | } |
bsalomon | a98419b | 2015-11-23 07:09:50 -0800 | [diff] [blame] | 160 | |
| 161 | // Should not be able to wrap with a sample count |
Robert Phillips | d46697a | 2017-01-25 12:10:37 -0500 | [diff] [blame] | 162 | { |
Robert Phillips | 26caf89 | 2017-01-27 10:58:31 -0500 | [diff] [blame] | 163 | sk_sp<GrSurfaceContext> temp = context0->contextPriv().makeBackendSurfaceContext( |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 164 | backendTex, kBottomLeft_GrSurfaceOrigin, kNone_GrBackendTextureFlag, 4, nullptr); |
Robert Phillips | 26caf89 | 2017-01-27 10:58:31 -0500 | [diff] [blame] | 165 | if (temp) { |
Robert Phillips | d46697a | 2017-01-25 12:10:37 -0500 | [diff] [blame] | 166 | ERRORF(reporter, "Should not be able to wrap an EXTERNAL texture with MSAA."); |
| 167 | } |
kkinnunen | 5931922 | 2015-11-22 23:23:53 -0800 | [diff] [blame] | 168 | } |
bsalomon | a98419b | 2015-11-23 07:09:50 -0800 | [diff] [blame] | 169 | |
Robert Phillips | 26c90e0 | 2017-03-14 14:39:29 -0400 | [diff] [blame] | 170 | test_read_pixels(reporter, surfaceContext.get(), pixels.get(), "EGLImageTest-read"); |
bsalomon | a98419b | 2015-11-23 07:09:50 -0800 | [diff] [blame] | 171 | |
Robert Phillips | 3500b77 | 2017-01-27 10:11:42 -0500 | [diff] [blame] | 172 | // We should not be able to write to a EXTERNAL texture |
Robert Phillips | 26c90e0 | 2017-03-14 14:39:29 -0400 | [diff] [blame] | 173 | test_write_pixels(reporter, surfaceContext.get(), false, "EGLImageTest-write"); |
bsalomon | a98419b | 2015-11-23 07:09:50 -0800 | [diff] [blame] | 174 | |
Robert Phillips | 3500b77 | 2017-01-27 10:11:42 -0500 | [diff] [blame] | 175 | // Only test RT-config |
| 176 | // 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] | 177 | test_copy_from_surface(reporter, context0, surfaceContext->asSurfaceProxy(), |
Robert Phillips | 3500b77 | 2017-01-27 10:11:42 -0500 | [diff] [blame] | 178 | pixels.get(), true, "EGLImageTest-copy"); |
bsalomon | a98419b | 2015-11-23 07:09:50 -0800 | [diff] [blame] | 179 | |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 180 | cleanup(glCtx0, externalTexture.fID, glCtx1.get(), context1, backendTexture1, image); |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | #endif |