blob: ad119aee6a30fa99ee2c8a31767bff0c62d6e320 [file] [log] [blame]
bsalomon@google.com373a6632011-10-19 20:43:20 +00001
2/*
robertphillips@google.com6177e692013-02-28 20:16:25 +00003 * Copyright 2013 Google Inc.
bsalomon@google.com373a6632011-10-19 20:43:20 +00004 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
kkinnunen9e61bb72014-10-09 05:24:15 -07008#include "gl/SkGLContext.h"
bsalomon@google.com1744f972013-02-26 21:46:32 +00009#include "GrGLUtil.h"
cdaltond416a5b2015-06-23 13:23:44 -070010#include "SkGpuFenceSync.h"
bsalomon@google.com373a6632011-10-19 20:43:20 +000011
cdaltond416a5b2015-06-23 13:23:44 -070012class SkGLContext::GLFenceSync : public SkGpuFenceSync {
13public:
14 static GLFenceSync* CreateIfSupported(const SkGLContext*);
15
16 SkPlatformGpuFence SK_WARN_UNUSED_RESULT insertFence() const override;
17 bool flushAndWaitFence(SkPlatformGpuFence fence) const override;
18 void deleteFence(SkPlatformGpuFence fence) const override;
19
20private:
21 GLFenceSync() {}
22
23 static const GrGLenum GL_SYNC_GPU_COMMANDS_COMPLETE = 0x9117;
24 static const GrGLenum GL_WAIT_FAILED = 0x911d;
25 static const GrGLbitfield GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001;
26
27 typedef struct __GLsync *GLsync;
28
29 typedef GLsync (GR_GL_FUNCTION_TYPE* GLFenceSyncProc) (GrGLenum, GrGLbitfield);
30 typedef GrGLenum (GR_GL_FUNCTION_TYPE* GLClientWaitSyncProc) (GLsync, GrGLbitfield, GrGLuint64);
31 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GLDeleteSyncProc) (GLsync);
32
33 GLFenceSyncProc fGLFenceSync;
34 GLClientWaitSyncProc fGLClientWaitSync;
35 GLDeleteSyncProc fGLDeleteSync;
36
37 typedef SkGpuFenceSync INHERITED;
38};
39
40SkGLContext::SkGLContext()
41 : fCurrentFenceIdx(0) {
42 memset(fFrameFences, 0, sizeof(fFrameFences));
bsalomon@google.com373a6632011-10-19 20:43:20 +000043}
44
kkinnunen9e61bb72014-10-09 05:24:15 -070045SkGLContext::~SkGLContext() {
cdaltond416a5b2015-06-23 13:23:44 -070046 // Subclass should call teardown.
47#ifdef SK_DEBUG
48 for (size_t i = 0; i < SK_ARRAY_COUNT(fFrameFences); i++) {
49 SkASSERT(0 == fFrameFences[i]);
50 }
51#endif
halcanary96fcdcc2015-08-27 07:41:13 -070052 SkASSERT(nullptr == fGL.get());
53 SkASSERT(nullptr == fFenceSync.get());
cdaltond416a5b2015-06-23 13:23:44 -070054}
55
56void SkGLContext::init(const GrGLInterface* gl, SkGpuFenceSync* fenceSync) {
57 SkASSERT(!fGL.get());
58 fGL.reset(gl);
59 fFenceSync.reset(fenceSync ? fenceSync : GLFenceSync::CreateIfSupported(this));
60}
61
62void SkGLContext::teardown() {
63 if (fFenceSync) {
64 for (size_t i = 0; i < SK_ARRAY_COUNT(fFrameFences); i++) {
65 if (fFrameFences[i]) {
66 fFenceSync->deleteFence(fFrameFences[i]);
67 fFrameFences[i] = 0;
68 }
69 }
halcanary96fcdcc2015-08-27 07:41:13 -070070 fFenceSync.reset(nullptr);
cdaltond416a5b2015-06-23 13:23:44 -070071 }
72
halcanary96fcdcc2015-08-27 07:41:13 -070073 fGL.reset(nullptr);
cdaltond416a5b2015-06-23 13:23:44 -070074}
75
76void SkGLContext::makeCurrent() const {
77 this->onPlatformMakeCurrent();
78}
79
80void SkGLContext::swapBuffers() {
81 if (!fFenceSync) {
82 // Fallback on the platform SwapBuffers method for synchronization. This may have no effect.
83 this->onPlatformSwapBuffers();
84 return;
85 }
86
87 if (fFrameFences[fCurrentFenceIdx]) {
88 if (!fFenceSync->flushAndWaitFence(fFrameFences[fCurrentFenceIdx])) {
89 SkDebugf("WARNING: Wait failed for fence sync. Timings might not be accurate.\n");
90 }
91 fFenceSync->deleteFence(fFrameFences[fCurrentFenceIdx]);
92 }
93
94 fFrameFences[fCurrentFenceIdx] = fFenceSync->insertFence();
95 fCurrentFenceIdx = (fCurrentFenceIdx + 1) % SK_ARRAY_COUNT(fFrameFences);
bsalomon@google.com373a6632011-10-19 20:43:20 +000096}
bsalomon944bcf02014-07-29 08:01:52 -070097
kkinnunen9e61bb72014-10-09 05:24:15 -070098void SkGLContext::testAbandon() {
bsalomon49f085d2014-09-05 13:34:00 -070099 if (fGL) {
bsalomon944bcf02014-07-29 08:01:52 -0700100 fGL->abandon();
101 }
cdaltond416a5b2015-06-23 13:23:44 -0700102 if (fFenceSync) {
103 memset(fFrameFences, 0, sizeof(fFrameFences));
104 }
105}
106
107SkGLContext::GLFenceSync* SkGLContext::GLFenceSync::CreateIfSupported(const SkGLContext* ctx) {
halcanary385fe4d2015-08-26 13:07:48 -0700108 SkAutoTDelete<GLFenceSync> ret(new GLFenceSync);
cdaltond416a5b2015-06-23 13:23:44 -0700109
110 if (kGL_GrGLStandard == ctx->gl()->fStandard) {
111 const GrGLubyte* versionStr;
112 SK_GL_RET(*ctx, versionStr, GetString(GR_GL_VERSION));
113 GrGLVersion version = GrGLGetVersionFromString(reinterpret_cast<const char*>(versionStr));
114 if (version < GR_GL_VER(3,2) && !ctx->gl()->hasExtension("GL_ARB_sync")) {
halcanary96fcdcc2015-08-27 07:41:13 -0700115 return nullptr;
cdaltond416a5b2015-06-23 13:23:44 -0700116 }
117 ret->fGLFenceSync = reinterpret_cast<GLFenceSyncProc>(
118 ctx->onPlatformGetProcAddress("glFenceSync"));
119 ret->fGLClientWaitSync = reinterpret_cast<GLClientWaitSyncProc>(
120 ctx->onPlatformGetProcAddress("glClientWaitSync"));
121 ret->fGLDeleteSync = reinterpret_cast<GLDeleteSyncProc>(
122 ctx->onPlatformGetProcAddress("glDeleteSync"));
123 } else {
124 if (!ctx->gl()->hasExtension("GL_APPLE_sync")) {
halcanary96fcdcc2015-08-27 07:41:13 -0700125 return nullptr;
cdaltond416a5b2015-06-23 13:23:44 -0700126 }
127 ret->fGLFenceSync = reinterpret_cast<GLFenceSyncProc>(
128 ctx->onPlatformGetProcAddress("glFenceSyncAPPLE"));
129 ret->fGLClientWaitSync = reinterpret_cast<GLClientWaitSyncProc>(
130 ctx->onPlatformGetProcAddress("glClientWaitSyncAPPLE"));
131 ret->fGLDeleteSync = reinterpret_cast<GLDeleteSyncProc>(
132 ctx->onPlatformGetProcAddress("glDeleteSyncAPPLE"));
133 }
134
135 if (!ret->fGLFenceSync || !ret->fGLClientWaitSync || !ret->fGLDeleteSync) {
halcanary96fcdcc2015-08-27 07:41:13 -0700136 return nullptr;
cdaltond416a5b2015-06-23 13:23:44 -0700137 }
138
139 return ret.detach();
140}
141
142SkPlatformGpuFence SkGLContext::GLFenceSync::insertFence() const {
143 return fGLFenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0);
144}
145
146bool SkGLContext::GLFenceSync::flushAndWaitFence(SkPlatformGpuFence fence) const {
147 GLsync glsync = static_cast<GLsync>(fence);
148 return GL_WAIT_FAILED != fGLClientWaitSync(glsync, GL_SYNC_FLUSH_COMMANDS_BIT, -1);
149}
150
151void SkGLContext::GLFenceSync::deleteFence(SkPlatformGpuFence fence) const {
152 GLsync glsync = static_cast<GLsync>(fence);
153 fGLDeleteSync(glsync);
bsalomon944bcf02014-07-29 08:01:52 -0700154}
bsalomone5286e02016-01-14 09:24:09 -0800155
156GrGLint SkGLContext::createTextureRectangle(int width, int height, GrGLenum internalFormat,
157 GrGLenum externalFormat, GrGLenum externalType,
158 GrGLvoid* data) {
bsalomone179a912016-01-20 06:18:10 -0800159 if (!(kGL_GrGLStandard == fGL->fStandard && GrGLGetVersion(fGL) >= GR_GL_VER(3, 1)) &&
bsalomone5286e02016-01-14 09:24:09 -0800160 !fGL->fExtensions.has("GL_ARB_texture_rectangle")) {
161 return 0;
162 }
bsalomone179a912016-01-20 06:18:10 -0800163
164 if (GrGLGetGLSLVersion(fGL) < GR_GLSL_VER(1, 40)) {
165 return 0;
166 }
167
bsalomone5286e02016-01-14 09:24:09 -0800168 GrGLuint id;
169 GR_GL_CALL(fGL, GenTextures(1, &id));
170 GR_GL_CALL(fGL, BindTexture(GR_GL_TEXTURE_RECTANGLE, id));
171 GR_GL_CALL(fGL, TexParameteri(GR_GL_TEXTURE_RECTANGLE, GR_GL_TEXTURE_MAG_FILTER,
172 GR_GL_NEAREST));
173 GR_GL_CALL(fGL, TexParameteri(GR_GL_TEXTURE_RECTANGLE, GR_GL_TEXTURE_MIN_FILTER,
174 GR_GL_NEAREST));
175 GR_GL_CALL(fGL, TexParameteri(GR_GL_TEXTURE_RECTANGLE, GR_GL_TEXTURE_WRAP_S,
176 GR_GL_CLAMP_TO_EDGE));
177 GR_GL_CALL(fGL, TexParameteri(GR_GL_TEXTURE_RECTANGLE, GR_GL_TEXTURE_WRAP_T,
178 GR_GL_CLAMP_TO_EDGE));
179 GR_GL_CALL(fGL, TexImage2D(GR_GL_TEXTURE_RECTANGLE, 0, internalFormat, width, height, 0,
180 externalFormat, externalType, data));
181 return id;
182}