kmsdrm: double and triple buffered versions of SwapWindow() are now both reimplemented in atomic pageflipping versions, and can be selected via SDL_VIDEO_DOUBLE_BUFFER env variable.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
diff --git a/src/video/kmsdrm/SDL_kmsdrmopengles.c b/src/video/kmsdrm/SDL_kmsdrmopengles.c
index e4274a9..70bd45f 100644
--- a/src/video/kmsdrm/SDL_kmsdrmopengles.c
+++ b/src/video/kmsdrm/SDL_kmsdrmopengles.c
@@ -73,123 +73,51 @@ static EGLSyncKHR create_fence(int fd, _THIS)
return fence;
}
-/*
--We have to stop the GPU from executing the cmdstream again because the front butter
- has been marked as back buffer so it can be selected by EGL to draw on it BUT
- the pageflip has not completed, so it's still on screen, so letting GPU render on it
- would cause tearing. (kms_fence)
--We have to stop the DISPLAY from doing the changes we requested in the atomic ioctl,
- like the pageflip, until the GPU has completed the cmdstream execution,
- because we don't want the pageflip to be done in the middle of a frame rendering.
- (gpu_fence).
--We have to stop the program from doing a new atomic ioctl until the previous one
-has been finished. (kms_fence)
-*/
-
int
-KMSDRM_GLES_SwapWindowDOUBLE(_THIS, SDL_Window * window) {
-
+KMSDRM_GLES_SwapWindow(_THIS, SDL_Window * window)
+{
SDL_WindowData *windata = ((SDL_WindowData *) window->driverdata);
SDL_DisplayData *dispdata = (SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
KMSDRM_FBInfo *fb;
-
- EGLint status;
int ret;
-
- uint32_t flags = DRM_MODE_ATOMIC_NONBLOCK;
-
- EGLSyncKHR kms_in_fence = NULL;
- EGLSyncKHR kms_out_fence = NULL;
-
- /* Create the display in-fence, and export it as a fence fd to pass into the kernel. */
- kms_in_fence = create_fence(EGL_NO_NATIVE_FENCE_FD_ANDROID, _this);
- assert(kms_in_fence);
- dispdata->kms_in_fence_fd = _this->egl_data->eglDupNativeFenceFDANDROID(_this->egl_data->egl_display, kms_in_fence);
-
- /* Mark the back buffer as the next front buffer, and the current front buffer as elegible
- by EGL as back buffer to draw into.
- This will not really happen until we post the pageflip though KMS with the atomic ioctl
- and it completes on next vsync. */
- _this->egl_data->eglSwapBuffers(_this->egl_data->egl_display, windata->egl_surface);
-
- /* Lock the buffer that is marked by eglSwapBuffers() to become the next front buffer (so it can not
- be chosen by EGL as back buffer to draw on), and get a handle to it, so we can use that handle
- to request the KMS pageflip that will set it as front buffer. */
- windata->next_bo = KMSDRM_gbm_surface_lock_front_buffer(windata->gs);
- if (!windata->next_bo) {
- printf("Failed to lock frontbuffer\n");
- return -1;
- }
- fb = KMSDRM_FBFromBO(_this, windata->next_bo);
- if (!fb) {
- printf("Failed to get a new framebuffer BO\n");
- return -1;
- }
- /*
- * Issue atomic pageflip to post the pageflip thru KMS. Returns immediately.
- * Never issue an atomic ioctl while the previuos one is pending: it will be rejected.
- */
- ret = drm_atomic_commit(_this, fb->fb_id, flags);
- if (ret) {
- printf("failed to do atomic commit\n");
- return -1;
- }
+ uint32_t flags = DRM_MODE_ATOMIC_NONBLOCK;
- /* Get the display out fence, returned by the atomic ioctl. */
- kms_out_fence = create_fence(dispdata->kms_out_fence_fd, _this);
- assert(kms_out_fence);
-
- /* Wait on the CPU side for the _previous_ commit to complete before we post the flip through KMS,
- * because atomic will reject the commit if we post a new one while the previous one is still pending. */
- do {
- status = _this->egl_data->eglClientWaitSyncKHR(_this->egl_data->egl_display, kms_out_fence, 0, EGL_FOREVER_KHR);
- } while (status != EGL_CONDITION_SATISFIED_KHR);
-
- /* Destroy both in and out display fences. */
- _this->egl_data->eglDestroySyncKHR(_this->egl_data->egl_display, kms_out_fence);
- _this->egl_data->eglDestroySyncKHR(_this->egl_data->egl_display, kms_in_fence);
-
- /* Now that the pageflip is complete, release last front buffer so EGL can chose it
- * as back buffer and render on it again: */
- if (windata->curr_bo) {
- KMSDRM_gbm_surface_release_buffer(windata->gs, windata->curr_bo);
- windata->curr_bo = NULL;
+ /* Do we need to set video mode this time? */
+ if (windata->crtc_setup_pending) {
+ flags |= DRM_MODE_ATOMIC_ALLOW_MODESET;
+ windata->crtc_setup_pending = SDL_FALSE;
}
- /* Take note of the current front buffer, so it can be freed next time this function is called. */
- windata->curr_bo = windata->next_bo;
-
- return ret;
-}
-
-int
-KMSDRM_GLES_SwapWindow(_THIS, SDL_Window * window) {
-
- SDL_WindowData *windata = ((SDL_WindowData *) window->driverdata);
- SDL_DisplayData *dispdata = (SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
- KMSDRM_FBInfo *fb;
- int ret;
-
- uint32_t flags = DRM_MODE_ATOMIC_NONBLOCK;
+ /*************************************************************************/
+ /* Block for telling KMS to wait for GPU rendering of the current frame */
+ /* before applying the KMS changes requested in the atomic ioctl. */
+ /*************************************************************************/
/* Create the fence that will be inserted in the cmdstream exactly at the end
of the gl commands that form a frame. KMS will have to wait on it before doing a pageflip. */
dispdata->gpu_fence = create_fence(EGL_NO_NATIVE_FENCE_FD_ANDROID, _this);
assert(dispdata->gpu_fence);
+ /* Mark in the EGL level the buffer that we want to become the new front buffer.
+ However, it won't really happen until we request a pageflip at the KMS level and it completes. */
_this->egl_data->eglSwapBuffers(_this->egl_data->egl_display, windata->egl_surface);
- /* It's safe to get the gpu_fence FD now, because eglSwapBuffers flushes it
- down the cmdstream, so it's now in place in the cmdstream.
- Atomic ioctl will pass the in-fence fd into the kernel. */
+ /* It's safe to get the gpu_fence FD now, because eglSwapBuffers flushes it down the cmdstream,
+ so it's now in place in the cmdstream.
+ Atomic ioctl will pass the in-fence fd into the kernel, telling KMS that it has to wait for GPU to
+ finish rendering the frame before doing the changes requested in the atomic ioct (pageflip in this case). */
dispdata->kms_in_fence_fd = _this->egl_data->eglDupNativeFenceFDANDROID(_this->egl_data->egl_display, dispdata->gpu_fence);
_this->egl_data->eglDestroySyncKHR(_this->egl_data->egl_display, dispdata->gpu_fence);
assert(dispdata->kms_in_fence_fd != -1);
+ /***************/
+ /* Block ends. */
+ /***************/
+
/* Lock the buffer that is marked by eglSwapBuffers() to become the next front buffer (so it can not
- be chosen by EGL as back buffer to draw on), and get a handle to it to request the pageflip on it. */
+ be chosen by EGL as back buffer to draw on), and get a handle to it to request the pageflip on it. */
windata->next_bo = KMSDRM_gbm_surface_lock_front_buffer(windata->gs);
if (!windata->next_bo) {
printf("Failed to lock frontbuffer\n");
@@ -201,8 +129,7 @@ KMSDRM_GLES_SwapWindow(_THIS, SDL_Window * window) {
return -1;
}
-
- /* Don't issue another atomic ioctl until previous one has completed. */
+ /* Don't issue another atomic ioctl until previous one has completed: it will cause errors. */
if (dispdata->kms_fence) {
EGLint status;
@@ -213,81 +140,81 @@ KMSDRM_GLES_SwapWindow(_THIS, SDL_Window * window) {
_this->egl_data->eglDestroySyncKHR(_this->egl_data->egl_display, dispdata->kms_fence);
}
-
- /* Issue atomic commit. */
+ /* Issue atomic commit, where we request the pageflip. */
ret = drm_atomic_commit(_this, fb->fb_id, flags);
if (ret) {
printf("failed to do atomic commit\n");
return -1;
}
-
-
- /* release last front buffer so EGL can chose it as back buffer and render on it again: */
- if (windata->curr_bo) {
- KMSDRM_gbm_surface_release_buffer(windata->gs, windata->curr_bo);
- windata->curr_bo = NULL;
+ /* Release the last front buffer so EGL can chose it as back buffer and render on it again. */
+ if (windata->bo) {
+ KMSDRM_gbm_surface_release_buffer(windata->gs, windata->bo);
}
- /* Take note of the current front buffer, so it can be freed next time this function is called. */
- windata->curr_bo = windata->next_bo;
+ /* Take note of current front buffer, so we can free it next time we come here. */
+ windata->bo = windata->next_bo;
+
+ /**************************************************************************/
+ /* Block for telling GPU to wait for completion of requested KMS changes */
+ /* before starting cmdstream execution (=next frame rendering). */
+ /**************************************************************************/
- /* Import out fence from the out fence fd and tell the GPU to wait on it
- until the requested pageflip has completed. */
+ /* Import the kms fence from the out fence fd. We need it to tell GPU to wait for pageflip to complete. */
dispdata->kms_fence = create_fence(dispdata->kms_out_fence_fd, _this);
assert(dispdata->kms_fence);
+ /* Reset out fence FD value because the fence is now away from us, on the driver side. */
dispdata->kms_out_fence_fd = -1;
+ /* Tell the GPU to wait until the requested pageflip has completed. */
_this->egl_data->eglWaitSyncKHR(_this->egl_data->egl_display, dispdata->kms_fence, 0);
- return ret;
+ /***************/
+ /* Block ends. */
+ /***************/
+ return ret;
}
int
-KMSDRM_GLES_SwapWindowOLD(_THIS, SDL_Window * window) {
-
+KMSDRM_GLES_SwapWindowDB(_THIS, SDL_Window * window)
+{
SDL_WindowData *windata = ((SDL_WindowData *) window->driverdata);
SDL_DisplayData *dispdata = (SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
KMSDRM_FBInfo *fb;
int ret;
+ /* Do we need to set video mode this time? */
uint32_t flags = DRM_MODE_ATOMIC_NONBLOCK;
+ if (windata->crtc_setup_pending) {
+ flags |= DRM_MODE_ATOMIC_ALLOW_MODESET;
+ windata->crtc_setup_pending = SDL_FALSE;
+ }
- dispdata->kms_fence = NULL; /* in-fence to gpu, out-fence from kms */
- dispdata->gpu_fence = NULL; /* in-fence to kms, out-fence from gpu, */
-
- /* Allow modeset (which is done inside atomic_commit). */
- flags |= DRM_MODE_ATOMIC_ALLOW_MODESET;
-
-
- /* Import out fence from the out fence fd and tell the GPU to wait on it
- until the requested pageflip has completed. */
- dispdata->kms_fence = create_fence(dispdata->kms_out_fence_fd, _this);
- assert(dispdata->kms_fence);
-
- dispdata->kms_out_fence_fd = -1;
-
-
- _this->egl_data->eglWaitSyncKHR(_this->egl_data->egl_display, dispdata->kms_fence, 0);
-
-
- /* GL DRAW */
-
- /* Create the gpu fence here so it's inserted in the cmdstream exactly
- at the end of the gl commands that form a frame. */
+ /* Create the fence that will be inserted in the cmdstream exactly at the end
+ of the gl commands that form a frame. KMS will have to wait on it before doing a pageflip.
+ (NOTE this fence is not really neeeded in double-buffer mode because the program will be
+ blocked in eglClientWaitSyncKMHR() until pageflip completes, but we need an in-fence FD anyway
+ to issue the atomic ioctl).
+ */
dispdata->gpu_fence = create_fence(EGL_NO_NATIVE_FENCE_FD_ANDROID, _this);
assert(dispdata->gpu_fence);
- _this->egl_data->eglSwapBuffers(_this->egl_data->egl_display, windata->egl_surface);
-
- /* It's safe to get the gpu_fence fd now, because eglSwapBuffers() flushes the fd. */
+ /* It's safe to get the gpu_fence FD now, because eglSwapBuffers flushes it down the cmdstream,
+ so it's now in place in the cmdstream.
+ Atomic ioctl will pass the in-fence fd into the kernel, telling KMS that it has to wait for GPU to
+ finish rendering the frame before doing the changes requested in the atomic ioct (pageflip in this case). */
dispdata->kms_in_fence_fd = _this->egl_data->eglDupNativeFenceFDANDROID(_this->egl_data->egl_display, dispdata->gpu_fence);
-
_this->egl_data->eglDestroySyncKHR(_this->egl_data->egl_display, dispdata->gpu_fence);
assert(dispdata->kms_in_fence_fd != -1);
+ /* Mark in the EGL level the buffer that we want to become the new front buffer.
+ However, it won't really happen until we request a pageflip at the KMS level and it completes. */
+ _this->egl_data->eglSwapBuffers(_this->egl_data->egl_display, windata->egl_surface);
+
+ /* Lock the buffer that is marked by eglSwapBuffers() to become the next front buffer (so it can not
+ be chosen by EGL as back buffer to draw on), and get a handle to it to request the pageflip on it. */
windata->next_bo = KMSDRM_gbm_surface_lock_front_buffer(windata->gs);
if (!windata->next_bo) {
printf("Failed to lock frontbuffer\n");
@@ -299,42 +226,43 @@ KMSDRM_GLES_SwapWindowOLD(_THIS, SDL_Window * window) {
return -1;
}
- if (dispdata->kms_fence) {
- EGLint status;
-
- do {
- status = _this->egl_data->eglClientWaitSyncKHR(_this->egl_data->egl_display, dispdata->kms_fence, 0, EGL_FOREVER_KHR);
- } while (status != EGL_CONDITION_SATISFIED_KHR);
-
- _this->egl_data->eglDestroySyncKHR(_this->egl_data->egl_display, dispdata->kms_fence);
- }
-
-
- /* Issue atomic commit. */
+ /* Issue atomic commit, where we request the pageflip. */
ret = drm_atomic_commit(_this, fb->fb_id, flags);
if (ret) {
printf("failed to do atomic commit\n");
return -1;
}
+ /* Release last front buffer so EGL can chose it as back buffer and render on it again. */
+ if (windata->bo) {
+ KMSDRM_gbm_surface_release_buffer(windata->gs, windata->bo);
+ }
+ /* Take note of current front buffer, so we can free it next time we come here. */
+ windata->bo = windata->next_bo;
- /* release last front buffer so EGL can chose it as back buffer and render on it again: */
- if (windata->curr_bo) {
- KMSDRM_gbm_surface_release_buffer(windata->gs, windata->curr_bo);
- windata->curr_bo = NULL;
- }
+ /* Import the kms fence from the out fence fd. We need it to tell GPU to wait for pageflip to complete. */
+ dispdata->kms_fence = create_fence(dispdata->kms_out_fence_fd, _this);
+ assert(dispdata->kms_fence);
- /* Take note of the current front buffer, so it can be freed next time this function is called. */
- windata->curr_bo = windata->next_bo;
+ /* Reset out fence FD value because the fence is now away from us, on the driver side. */
+ dispdata->kms_out_fence_fd = -1;
- /* Allow a modeset change for the first commit only. */
- flags &= ~(DRM_MODE_ATOMIC_ALLOW_MODESET);
+ /* Wait for pageflip to complete, and destroy kms_fence. */
+ if (dispdata->kms_fence) {
+ EGLint status;
+ do {
+ status = _this->egl_data->eglClientWaitSyncKHR(_this->egl_data->egl_display, dispdata->kms_fence, 0, EGL_FOREVER_KHR);
+ } while (status != EGL_CONDITION_SATISFIED_KHR);
+
+ _this->egl_data->eglDestroySyncKHR(_this->egl_data->egl_display, dispdata->kms_fence);
+ }
return ret;
}
+
/***************************************/
/* End of Atomic functions block */
/***************************************/
diff --git a/src/video/kmsdrm/SDL_kmsdrmopengles.h b/src/video/kmsdrm/SDL_kmsdrmopengles.h
index a414ea8..cd8ec49 100644
--- a/src/video/kmsdrm/SDL_kmsdrmopengles.h
+++ b/src/video/kmsdrm/SDL_kmsdrmopengles.h
@@ -39,6 +39,7 @@ extern int KMSDRM_GLES_SetSwapInterval(_THIS, int interval);
extern int KMSDRM_GLES_LoadLibrary(_THIS, const char *path);
extern SDL_GLContext KMSDRM_GLES_CreateContext(_THIS, SDL_Window * window);
extern int KMSDRM_GLES_SwapWindow(_THIS, SDL_Window * window);
+extern int KMSDRM_GLES_SwapWindowDB(_THIS, SDL_Window * window);
extern int KMSDRM_GLES_MakeCurrent(_THIS, SDL_Window * window, SDL_GLContext context);
#endif /* SDL_VIDEO_DRIVER_KMSDRM && SDL_VIDEO_OPENGL_EGL */
diff --git a/src/video/kmsdrm/SDL_kmsdrmvideo.c b/src/video/kmsdrm/SDL_kmsdrmvideo.c
index fa2772b..feb1b05 100644
--- a/src/video/kmsdrm/SDL_kmsdrmvideo.c
+++ b/src/video/kmsdrm/SDL_kmsdrmvideo.c
@@ -550,7 +550,12 @@ KMSDRM_CreateDevice(int devindex)
device->GL_MakeCurrent = KMSDRM_GLES_MakeCurrent;
device->GL_SetSwapInterval = KMSDRM_GLES_SetSwapInterval;
device->GL_GetSwapInterval = KMSDRM_GLES_GetSwapInterval;
- device->GL_SwapWindow = KMSDRM_GLES_SwapWindow;
+
+ if (SDL_GetHintBoolean(SDL_HINT_VIDEO_DOUBLE_BUFFER, SDL_FALSE))
+ device->GL_SwapWindow = KMSDRM_GLES_SwapWindowDB;
+ else
+ device->GL_SwapWindow = KMSDRM_GLES_SwapWindow;
+
device->GL_DeleteContext = KMSDRM_GLES_DeleteContext;
#endif
device->PumpEvents = KMSDRM_PumpEvents;
@@ -642,9 +647,9 @@ KMSDRM_DestroySurfaces(_THIS, SDL_Window * window)
{
SDL_WindowData *windata = (SDL_WindowData *)window->driverdata;
- if (windata->curr_bo) {
- KMSDRM_gbm_surface_release_buffer(windata->gs, windata->curr_bo);
- windata->curr_bo = NULL;
+ if (windata->bo) {
+ KMSDRM_gbm_surface_release_buffer(windata->gs, windata->bo);
+ windata->bo = NULL;
}
if (windata->next_bo) {
@@ -710,8 +715,8 @@ KMSDRM_CreateSurfaces(_THIS, SDL_Window * window)
windata->egl_surface_dirty = SDL_FALSE;
#endif
- /* We can't call KMSDRM_SetCRTC() until we have a fb_id, in KMSDRM_GLES_SwapWindow().
- So we take note here to do it there. */
+ /* We take note here about the need to do a modeset in the atomic_commit(),
+ called in KMSDRM_GLES_SwapWindow(). */
windata->crtc_setup_pending = SDL_TRUE;
return 0;
@@ -1166,7 +1171,6 @@ KMSDRM_CreateWindow(_THIS, SDL_Window * window)
}
/* Init windata fields. */
- windata->double_buffer = SDL_FALSE;
windata->crtc_setup_pending = SDL_FALSE;
windata->egl_surface_dirty = SDL_FALSE;
@@ -1198,12 +1202,6 @@ KMSDRM_CreateWindow(_THIS, SDL_Window * window)
window->w = display->desktop_mode.w;
window->h = display->desktop_mode.h; */
-
- /* In case low-latency is wanted, double-buffered video will be used. We take note here */
- if (SDL_GetHintBoolean(SDL_HINT_VIDEO_DOUBLE_BUFFER, SDL_FALSE)) {
- windata->double_buffer = SDL_TRUE;
- }
-
/* Setup driver data for this window */
windata->viddata = viddata;
window->driverdata = windata;
diff --git a/src/video/kmsdrm/SDL_kmsdrmvideo.h b/src/video/kmsdrm/SDL_kmsdrmvideo.h
index e69fe17..6a3e8a1 100644
--- a/src/video/kmsdrm/SDL_kmsdrmvideo.h
+++ b/src/video/kmsdrm/SDL_kmsdrmvideo.h
@@ -90,10 +90,9 @@ typedef struct SDL_WindowData
{
SDL_VideoData *viddata;
struct gbm_surface *gs;
- struct gbm_bo *curr_bo;
+ struct gbm_bo *bo;
struct gbm_bo *next_bo;
struct gbm_bo *crtc_bo;
- SDL_bool double_buffer;
SDL_bool crtc_setup_pending;
#if SDL_VIDEO_OPENGL_EGL
SDL_bool egl_surface_dirty;