HomeSort by relevance Sort by last modified time
    Searched refs:pbuffer (Results 1 - 25 of 26) sorted by null

1 2

  /external/virglrenderer/src/
virgl_glx_context.c 37 GLXPbuffer pbuffer; member in struct:virgl_glx
66 d->pbuffer = glXCreatePbuffer(d->display, d->fbConfigs[0], pbufferAttribs);
74 glXDestroyPbuffer(d->display,d->pbuffer);
103 return glXMakeContextCurrent(d->display, d->pbuffer, d->pbuffer, virglctx);
  /external/mesa3d/src/glx/apple/
apple_cgl.h 72 GLint max_level, CGLPBufferObj * pbuffer);
74 CGLError(*destroy_pbuffer) (CGLPBufferObj pbuffer);
77 CGLPBufferObj pbuffer,
apple_glx_pbuffer.c 76 struct apple_glx_pbuffer *pbuf = &d->types.pbuffer;
93 apple_glx_diagnostic("made pbuffer drawable 0x%lx current\n", d->drawable);
101 struct apple_glx_pbuffer *pbuf = &d->types.pbuffer;
105 apple_glx_diagnostic("destroying pbuffer for drawable 0x%lx\n",
156 pbuf = &d->types.pbuffer;
273 pbuf = &d->types.pbuffer;
295 "unable to find the largest pbuffer!\n");
326 d->types.pbuffer.event_mask = mask;
343 *mask = d->types.pbuffer.event_mask;
apple_glx_drawable.h 109 struct apple_glx_pbuffer pbuffer; member in union:apple_glx_drawable::__anon34119
198 /* Returns true if the pbuffer was invalid. */
201 /* Returns true if the pbuffer was valid and the attribute. */
  /external/swiftshader/tests/GLESUnitTests/
unittests.cpp 1563 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, buffer, getConfig(), attribs); local
1605 EGLSurface pbuffer; local
1643 EGLSurface pbuffer; local
1821 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
1841 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
1858 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
1875 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
1893 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
1910 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
1928 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
1945 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
1975 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
1996 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
2014 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
2032 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
2051 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
2069 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
2087 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
2106 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
2124 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
2142 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, clientBufferWrapper.getClientBuffer(), getConfig(), attribs); local
2159 EGLSurface pbuffer = createIOSurfacePbuffer(clientBufferWrapper.getClientBuffer(), 10, 10, 0, GL_BGRA_EXT, GL_UNSIGNED_BYTE); local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RenderTarget.java 176 EGLSurface pbuffer = eglCreatePbufferSurface(display, config, pbuffer_attribs, 0); local
177 if (pbuffer == null) {
178 throw new IllegalStateException("create pbuffer surface failed");
180 if (!eglMakeCurrent(display, pbuffer, pbuffer, context)) {
  /cts/tests/tests/security/src/android/security/cts/
RenderTarget.java 179 EGLSurface pbuffer = eglCreatePbufferSurface(display, config, pbuffer_attribs, 0); local
180 if (pbuffer == null) {
181 throw new IllegalStateException("create pbuffer surface failed");
183 if (!eglMakeCurrent(display, pbuffer, pbuffer, context)) {
  /external/ltp/testcases/kernel/security/tomoyo/
tomoyo_new_file_test.c 97 char pbuffer[1024]; local
245 memset(pbuffer, 0, sizeof(pbuffer));
249 snprintf(pbuffer, sizeof(pbuffer) - 1, "allow_write %s", filename);
250 policy = pbuffer;
  /external/skia/src/utils/win/
SkWGL.h 142 * Helper class for creating a pbuffer context and deleting all the handles when finished. This
143 * requires that a device context has been created. However, the pbuffer gets its own device
144 * context. The original device context can be released once the pbuffer context is created.
157 SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc);
SkWGL_win.cpp 506 SkWGLPbufferContext::SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc)
507 : fPbuffer(pbuffer)
  /external/skqp/src/utils/win/
SkWGL.h 142 * Helper class for creating a pbuffer context and deleting all the handles when finished. This
143 * requires that a device context has been created. However, the pbuffer gets its own device
144 * context. The original device context can be released once the pbuffer context is created.
157 SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc);
SkWGL_win.cpp 506 SkWGLPbufferContext::SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc)
507 : fPbuffer(pbuffer)
  /frameworks/av/media/libmediametrics/include/
MediaAnalyticsItem.h 187 bool dumpAttributes(char **pbuffer, size_t *plength);
  /device/google/bonito/sdm710/kernel-headers/linux/
msm_vidc_enc.h 251 unsigned char * pbuffer; member in struct:venc_bufferpayload
362 unsigned char * pbuffer; member in struct:venc_recon_addr
  /device/google/bonito/sdm710/original-kernel-headers/linux/
msm_vidc_enc.h 589 unsigned char *pbuffer; member in struct:venc_bufferpayload
722 unsigned char *pbuffer; member in struct:venc_recon_addr
  /device/google/crosshatch/sdm845/kernel-headers/linux/
msm_vidc_enc.h 251 unsigned char * pbuffer; member in struct:venc_bufferpayload
362 unsigned char * pbuffer; member in struct:venc_recon_addr
  /device/google/crosshatch/sdm845/original-kernel-headers/linux/
msm_vidc_enc.h 589 unsigned char *pbuffer; member in struct:venc_bufferpayload
722 unsigned char *pbuffer; member in struct:venc_recon_addr
  /external/mesa3d/src/glx/
glx_pbuffer.c 27 * Implementation of pbuffer related functions.
435 req->pbuffer = (GLXPbuffer) drawable;
442 * Create a non-pbuffer GLX drawable.
506 * Destroy a non-pbuffer GLX drawable.
525 * Create a pbuffer.
576 req->pbuffer = id;
624 * Destroy a pbuffer.
655 req->pbuffer = (GLXPbuffer) drawable;
680 * Create a new pbuffer.
695 * Create a new pbuffer
    [all...]
  /external/mesa3d/include/GL/
glx.h 179 ** event - this helps initialization if the server supports the pbuffer
364 extern Bool glXBindTexImageARB(Display *dpy, GLXPbuffer pbuffer, int buffer);
365 extern Bool glXReleaseTexImageARB(Display *dpy, GLXPbuffer pbuffer, int buffer);
glxext.h     [all...]
  /frameworks/av/media/libmediametrics/
MediaAnalyticsItem.cpp 1089 bool MediaAnalyticsItem::dumpAttributes(char **pbuffer, size_t *plength) {
1093 if (pbuffer == NULL || plength == NULL)
1097 *pbuffer = NULL;
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.c 901 glXAssociateDMPbufferSGIX(Display *dpy, GLXPbufferSGIX pbuffer, DMparams *params, DMbuffer dmbuffer)
907 return t->AssociateDMPbufferSGIX(dpy, pbuffer, params, dmbuffer);
fakeglx.c     [all...]
  /external/swiftshader/include/GL/
glxext.h     [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_api.c     [all...]

Completed in 2526 milliseconds

1 2