2016-03-31 01:56:19 +00:00
|
|
|
|
2012-03-28 16:19:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2016-03-31 17:59:06 +00:00
|
|
|
#include "GLTestContext_angle.h"
|
2012-03-28 16:19:11 +00:00
|
|
|
|
2015-02-23 18:51:13 +00:00
|
|
|
#include <EGL/egl.h>
|
2015-07-24 13:52:40 +00:00
|
|
|
#include <EGL/eglext.h>
|
2015-02-23 18:51:13 +00:00
|
|
|
|
2015-11-22 22:51:00 +00:00
|
|
|
#include "gl/GrGLDefines.h"
|
|
|
|
#include "gl/GrGLUtil.h"
|
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
#include "gl/GrGLInterface.h"
|
|
|
|
#include "gl/GrGLAssembleInterface.h"
|
|
|
|
#include "../ports/SkOSLibrary.h"
|
|
|
|
|
|
|
|
#include <EGL/egl.h>
|
|
|
|
|
2015-07-21 21:50:07 +00:00
|
|
|
#define EGL_PLATFORM_ANGLE_ANGLE 0x3202
|
|
|
|
#define EGL_PLATFORM_ANGLE_TYPE_ANGLE 0x3203
|
|
|
|
#define EGL_PLATFORM_ANGLE_TYPE_D3D9_ANGLE 0x3207
|
|
|
|
#define EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE 0x3208
|
2015-09-11 20:07:29 +00:00
|
|
|
#define EGL_PLATFORM_ANGLE_TYPE_OPENGL_ANGLE 0x320D
|
2015-02-23 16:57:23 +00:00
|
|
|
|
2016-10-14 15:13:48 +00:00
|
|
|
using sk_gpu_test::ANGLEBackend;
|
|
|
|
using sk_gpu_test::ANGLEContextVersion;
|
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
namespace {
|
|
|
|
struct Libs {
|
|
|
|
void* fGLLib;
|
|
|
|
void* fEGLLib;
|
|
|
|
};
|
|
|
|
|
|
|
|
static GrGLFuncPtr angle_get_gl_proc(void* ctx, const char name[]) {
|
|
|
|
const Libs* libs = reinterpret_cast<const Libs*>(ctx);
|
|
|
|
GrGLFuncPtr proc = (GrGLFuncPtr) GetProcedureAddress(libs->fGLLib, name);
|
|
|
|
if (proc) {
|
|
|
|
return proc;
|
|
|
|
}
|
|
|
|
proc = (GrGLFuncPtr) GetProcedureAddress(libs->fEGLLib, name);
|
|
|
|
if (proc) {
|
|
|
|
return proc;
|
|
|
|
}
|
|
|
|
return eglGetProcAddress(name);
|
|
|
|
}
|
|
|
|
|
2016-10-14 15:13:48 +00:00
|
|
|
void* get_angle_egl_display(void* nativeDisplay, ANGLEBackend type) {
|
2015-07-24 13:52:40 +00:00
|
|
|
PFNEGLGETPLATFORMDISPLAYEXTPROC eglGetPlatformDisplayEXT;
|
2015-02-23 16:57:23 +00:00
|
|
|
eglGetPlatformDisplayEXT =
|
2015-07-24 13:52:40 +00:00
|
|
|
(PFNEGLGETPLATFORMDISPLAYEXTPROC)eglGetProcAddress("eglGetPlatformDisplayEXT");
|
2015-02-23 16:57:23 +00:00
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
// We expect ANGLE to support this extension
|
2015-02-23 16:57:23 +00:00
|
|
|
if (!eglGetPlatformDisplayEXT) {
|
2016-03-31 01:56:19 +00:00
|
|
|
return EGL_NO_DISPLAY;
|
2015-02-23 16:57:23 +00:00
|
|
|
}
|
|
|
|
|
2016-10-14 15:13:48 +00:00
|
|
|
EGLint typeNum = 0;
|
|
|
|
switch (type) {
|
|
|
|
case ANGLEBackend::kD3D9:
|
|
|
|
typeNum = EGL_PLATFORM_ANGLE_TYPE_D3D9_ANGLE;
|
|
|
|
break;
|
|
|
|
case ANGLEBackend::kD3D11:
|
|
|
|
typeNum = EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE;
|
|
|
|
break;
|
|
|
|
case ANGLEBackend::kOpenGL:
|
|
|
|
typeNum = EGL_PLATFORM_ANGLE_TYPE_OPENGL_ANGLE;
|
|
|
|
break;
|
2015-02-23 16:57:23 +00:00
|
|
|
}
|
2016-10-14 15:13:48 +00:00
|
|
|
const EGLint attribs[] = { EGL_PLATFORM_ANGLE_TYPE_ANGLE, typeNum, EGL_NONE };
|
|
|
|
return eglGetPlatformDisplayEXT(EGL_PLATFORM_ANGLE_ANGLE, nativeDisplay, attribs);
|
2015-02-23 16:57:23 +00:00
|
|
|
}
|
|
|
|
|
2016-03-31 17:59:06 +00:00
|
|
|
class ANGLEGLContext : public sk_gpu_test::GLTestContext {
|
2016-03-31 01:56:19 +00:00
|
|
|
public:
|
2016-10-14 15:13:48 +00:00
|
|
|
ANGLEGLContext(ANGLEBackend, ANGLEContextVersion);
|
2016-03-31 01:56:19 +00:00
|
|
|
~ANGLEGLContext() override;
|
|
|
|
|
|
|
|
GrEGLImage texture2DToEGLImage(GrGLuint texID) const override;
|
|
|
|
void destroyEGLImage(GrEGLImage) const override;
|
|
|
|
GrGLuint eglImageToExternalTexture(GrEGLImage) const override;
|
2016-11-03 18:40:50 +00:00
|
|
|
std::unique_ptr<sk_gpu_test::GLTestContext> makeNew() const override;
|
2016-03-31 01:56:19 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void destroyGLContext();
|
|
|
|
|
|
|
|
void onPlatformMakeCurrent() const override;
|
|
|
|
void onPlatformSwapBuffers() const override;
|
|
|
|
GrGLFuncPtr onPlatformGetProcAddress(const char* name) const override;
|
|
|
|
|
2016-10-14 15:13:48 +00:00
|
|
|
void* fContext;
|
|
|
|
void* fDisplay;
|
|
|
|
void* fSurface;
|
|
|
|
ANGLEBackend fType;
|
|
|
|
ANGLEContextVersion fVersion;
|
2016-03-31 01:56:19 +00:00
|
|
|
};
|
|
|
|
|
2016-10-14 15:13:48 +00:00
|
|
|
ANGLEGLContext::ANGLEGLContext(ANGLEBackend type, ANGLEContextVersion version)
|
2012-03-28 16:19:11 +00:00
|
|
|
: fContext(EGL_NO_CONTEXT)
|
|
|
|
, fDisplay(EGL_NO_DISPLAY)
|
2016-10-14 15:13:48 +00:00
|
|
|
, fSurface(EGL_NO_SURFACE)
|
|
|
|
, fType(type)
|
|
|
|
, fVersion(version) {
|
2012-03-28 16:19:11 +00:00
|
|
|
|
|
|
|
EGLint numConfigs;
|
|
|
|
static const EGLint configAttribs[] = {
|
|
|
|
EGL_SURFACE_TYPE, EGL_PBUFFER_BIT,
|
|
|
|
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
|
|
|
|
EGL_RED_SIZE, 8,
|
|
|
|
EGL_GREEN_SIZE, 8,
|
|
|
|
EGL_BLUE_SIZE, 8,
|
|
|
|
EGL_ALPHA_SIZE, 8,
|
|
|
|
EGL_NONE
|
|
|
|
};
|
|
|
|
|
2016-10-14 15:13:48 +00:00
|
|
|
fDisplay = get_angle_egl_display(EGL_DEFAULT_DISPLAY, type);
|
2015-02-23 16:57:23 +00:00
|
|
|
if (EGL_NO_DISPLAY == fDisplay) {
|
|
|
|
SkDebugf("Could not create EGL display!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
EGLint majorVersion;
|
|
|
|
EGLint minorVersion;
|
|
|
|
eglInitialize(fDisplay, &majorVersion, &minorVersion);
|
|
|
|
|
2012-04-02 15:04:16 +00:00
|
|
|
EGLConfig surfaceConfig;
|
|
|
|
eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs);
|
2012-03-28 16:19:11 +00:00
|
|
|
|
2016-10-14 15:13:48 +00:00
|
|
|
int versionNum = ANGLEContextVersion::kES2 == version ? 2 : 3;
|
|
|
|
const EGLint contextAttribs[] = {
|
|
|
|
EGL_CONTEXT_CLIENT_VERSION, versionNum,
|
2012-03-28 16:19:11 +00:00
|
|
|
EGL_NONE
|
|
|
|
};
|
2015-08-27 14:41:13 +00:00
|
|
|
fContext = eglCreateContext(fDisplay, surfaceConfig, nullptr, contextAttribs);
|
2012-03-28 16:19:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
static const EGLint surfaceAttribs[] = {
|
2015-02-23 16:57:23 +00:00
|
|
|
EGL_WIDTH, 1,
|
|
|
|
EGL_HEIGHT, 1,
|
|
|
|
EGL_NONE
|
|
|
|
};
|
|
|
|
|
2012-04-02 15:04:16 +00:00
|
|
|
fSurface = eglCreatePbufferSurface(fDisplay, surfaceConfig, surfaceAttribs);
|
2012-03-28 16:19:11 +00:00
|
|
|
|
2012-04-02 15:04:16 +00:00
|
|
|
eglMakeCurrent(fDisplay, fSurface, fSurface, fContext);
|
2012-03-28 16:19:11 +00:00
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
SkAutoTUnref<const GrGLInterface> gl(sk_gpu_test::CreateANGLEGLInterface());
|
2015-08-27 14:41:13 +00:00
|
|
|
if (nullptr == gl.get()) {
|
2012-03-28 16:19:11 +00:00
|
|
|
SkDebugf("Could not create ANGLE GL interface!\n");
|
|
|
|
this->destroyGLContext();
|
2014-10-16 06:03:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-06-23 20:23:44 +00:00
|
|
|
if (!gl->validate()) {
|
2014-10-16 06:03:54 +00:00
|
|
|
SkDebugf("Could not validate ANGLE GL interface!\n");
|
|
|
|
this->destroyGLContext();
|
|
|
|
return;
|
2012-03-28 16:19:11 +00:00
|
|
|
}
|
2015-06-23 20:23:44 +00:00
|
|
|
|
2016-03-16 20:53:35 +00:00
|
|
|
this->init(gl.release());
|
2014-10-16 06:03:54 +00:00
|
|
|
}
|
2012-03-28 16:19:11 +00:00
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
ANGLEGLContext::~ANGLEGLContext() {
|
2015-06-23 20:23:44 +00:00
|
|
|
this->teardown();
|
2014-10-16 06:03:54 +00:00
|
|
|
this->destroyGLContext();
|
|
|
|
}
|
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
GrEGLImage ANGLEGLContext::texture2DToEGLImage(GrGLuint texID) const {
|
2015-11-22 22:51:00 +00:00
|
|
|
if (!this->gl()->hasExtension("EGL_KHR_gl_texture_2D_image")) {
|
|
|
|
return GR_EGL_NO_IMAGE;
|
|
|
|
}
|
|
|
|
GrEGLImage img;
|
|
|
|
GrEGLint attribs[] = { GR_EGL_GL_TEXTURE_LEVEL, 0,
|
|
|
|
GR_EGL_IMAGE_PRESERVED, GR_EGL_TRUE,
|
|
|
|
GR_EGL_NONE };
|
|
|
|
// 64 bit cast is to shut Visual C++ up about casting 32 bit value to a pointer.
|
|
|
|
GrEGLClientBuffer clientBuffer = reinterpret_cast<GrEGLClientBuffer>((uint64_t)texID);
|
|
|
|
GR_GL_CALL_RET(this->gl(), img,
|
|
|
|
EGLCreateImage(fDisplay, fContext, GR_EGL_GL_TEXTURE_2D, clientBuffer,
|
|
|
|
attribs));
|
|
|
|
return img;
|
|
|
|
}
|
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
void ANGLEGLContext::destroyEGLImage(GrEGLImage image) const {
|
2015-11-22 22:51:00 +00:00
|
|
|
GR_GL_CALL(this->gl(), EGLDestroyImage(fDisplay, image));
|
|
|
|
}
|
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
GrGLuint ANGLEGLContext::eglImageToExternalTexture(GrEGLImage image) const {
|
2015-11-22 22:51:00 +00:00
|
|
|
GrGLClearErr(this->gl());
|
|
|
|
if (!this->gl()->hasExtension("GL_OES_EGL_image_external")) {
|
|
|
|
return 0;
|
|
|
|
}
|
2016-08-26 17:37:57 +00:00
|
|
|
typedef GrGLvoid (EGLAPIENTRY *EGLImageTargetTexture2DProc)(GrGLenum, GrGLeglImage);
|
2016-03-18 20:10:33 +00:00
|
|
|
EGLImageTargetTexture2DProc glEGLImageTargetTexture2D =
|
|
|
|
(EGLImageTargetTexture2DProc)eglGetProcAddress("glEGLImageTargetTexture2DOES");
|
2015-11-22 22:51:00 +00:00
|
|
|
if (!glEGLImageTargetTexture2D) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
GrGLuint texID;
|
|
|
|
GR_GL_CALL(this->gl(), GenTextures(1, &texID));
|
|
|
|
if (!texID) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
GR_GL_CALL(this->gl(), BindTexture(GR_GL_TEXTURE_EXTERNAL, texID));
|
|
|
|
if (GR_GL_GET_ERROR(this->gl()) != GR_GL_NO_ERROR) {
|
|
|
|
GR_GL_CALL(this->gl(), DeleteTextures(1, &texID));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
glEGLImageTargetTexture2D(GR_GL_TEXTURE_EXTERNAL, image);
|
|
|
|
if (GR_GL_GET_ERROR(this->gl()) != GR_GL_NO_ERROR) {
|
|
|
|
GR_GL_CALL(this->gl(), DeleteTextures(1, &texID));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return texID;
|
|
|
|
}
|
|
|
|
|
2016-11-03 18:40:50 +00:00
|
|
|
std::unique_ptr<sk_gpu_test::GLTestContext> ANGLEGLContext::makeNew() const {
|
|
|
|
std::unique_ptr<sk_gpu_test::GLTestContext> ctx =
|
|
|
|
sk_gpu_test::MakeANGLETestContext(fType, fVersion);
|
2015-11-22 22:51:00 +00:00
|
|
|
if (ctx) {
|
|
|
|
ctx->makeCurrent();
|
|
|
|
}
|
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
void ANGLEGLContext::destroyGLContext() {
|
2014-10-16 06:03:54 +00:00
|
|
|
if (fDisplay) {
|
|
|
|
eglMakeCurrent(fDisplay, 0, 0, 0);
|
|
|
|
|
|
|
|
if (fContext) {
|
|
|
|
eglDestroyContext(fDisplay, fContext);
|
|
|
|
fContext = EGL_NO_CONTEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fSurface) {
|
|
|
|
eglDestroySurface(fDisplay, fSurface);
|
|
|
|
fSurface = EGL_NO_SURFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO should we close the display?
|
|
|
|
fDisplay = EGL_NO_DISPLAY;
|
|
|
|
}
|
2012-03-28 16:19:11 +00:00
|
|
|
}
|
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
void ANGLEGLContext::onPlatformMakeCurrent() const {
|
2012-04-02 15:04:16 +00:00
|
|
|
if (!eglMakeCurrent(fDisplay, fSurface, fSurface, fContext)) {
|
2012-03-28 16:19:11 +00:00
|
|
|
SkDebugf("Could not set the context.\n");
|
|
|
|
}
|
|
|
|
}
|
2013-10-09 18:25:38 +00:00
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
void ANGLEGLContext::onPlatformSwapBuffers() const {
|
2013-10-09 18:25:38 +00:00
|
|
|
if (!eglSwapBuffers(fDisplay, fSurface)) {
|
|
|
|
SkDebugf("Could not complete eglSwapBuffers.\n");
|
|
|
|
}
|
|
|
|
}
|
2015-06-23 20:23:44 +00:00
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
GrGLFuncPtr ANGLEGLContext::onPlatformGetProcAddress(const char* name) const {
|
2015-06-23 20:23:44 +00:00
|
|
|
return eglGetProcAddress(name);
|
|
|
|
}
|
2016-03-31 01:56:19 +00:00
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
namespace sk_gpu_test {
|
|
|
|
const GrGLInterface* CreateANGLEGLInterface() {
|
|
|
|
static Libs gLibs = { nullptr, nullptr };
|
|
|
|
|
|
|
|
if (nullptr == gLibs.fGLLib) {
|
|
|
|
// We load the ANGLE library and never let it go
|
|
|
|
#if defined _WIN32
|
|
|
|
gLibs.fGLLib = DynamicLoadLibrary("libGLESv2.dll");
|
|
|
|
gLibs.fEGLLib = DynamicLoadLibrary("libEGL.dll");
|
|
|
|
#elif defined SK_BUILD_FOR_MAC
|
|
|
|
gLibs.fGLLib = DynamicLoadLibrary("libGLESv2.dylib");
|
|
|
|
gLibs.fEGLLib = DynamicLoadLibrary("libEGL.dylib");
|
|
|
|
#else
|
|
|
|
gLibs.fGLLib = DynamicLoadLibrary("libGLESv2.so");
|
|
|
|
gLibs.fEGLLib = DynamicLoadLibrary("libEGL.so");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nullptr == gLibs.fGLLib || nullptr == gLibs.fEGLLib) {
|
|
|
|
// We can't setup the interface correctly w/o the so
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GrGLAssembleGLESInterface(&gLibs, angle_get_gl_proc);
|
|
|
|
}
|
|
|
|
|
2016-11-03 18:40:50 +00:00
|
|
|
std::unique_ptr<GLTestContext> MakeANGLETestContext(ANGLEBackend type, ANGLEContextVersion version){
|
2016-11-03 19:43:44 +00:00
|
|
|
std::unique_ptr<GLTestContext> ctx(new ANGLEGLContext(type, version));
|
2016-03-31 01:56:19 +00:00
|
|
|
if (!ctx->isValid()) {
|
2016-11-03 18:40:50 +00:00
|
|
|
return nullptr;
|
2016-03-31 01:56:19 +00:00
|
|
|
}
|
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
} // namespace sk_gpu_test
|