| 207 | |
| 208 | |
| 209 | void VirtualDrawable::OGLDrawable::swap(void) |
| 210 | { |
| 211 | if(edpy != EGL_NO_DISPLAY) return; |
| 212 | if(isPixmap) |
| 213 | _glXSwapBuffers(DPY3D, glxDraw); |
| 214 | else |
| 215 | backend::swapBuffers(dpy, glxDraw); |
| 216 | } |
| 217 | |
| 218 | |
| 219 | // This class encapsulates the relationship between an X11 drawable and the |
nothing calls this directly
no test coverage detected