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

  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglCanvas.java 48 import org.lwjgl.opengl.Pbuffer;
78 private Pbuffer pbuffer; field in class:LwjglCanvas
298 // Use 0 samples for pbuffer format, prevents
325 * Makes sure the pbuffer is available and ready for use
328 if (pbuffer != null && pbuffer.isBufferLost()){
329 logger.log(Level.WARNING, "PBuffer was lost!");
330 pbuffer.destroy();
331 pbuffer = null;
459 Display.create(acquirePixelFormat(false), pbuffer); local
    [all...]
LwjglOffscreenBuffer.java 51 private Pbuffer pbuffer; field in class:LwjglOffscreenBuffer
58 if ((Pbuffer.getCapabilities() & Pbuffer.PBUFFER_SUPPORTED) == 0){
82 pbuffer = new Pbuffer(width, height, pixelFormat, null, null, createContextAttribs());
83 pbuffer.makeCurrent();
113 if (pbuffer.isBufferLost()){
114 pbuffer.destroy();
116 pbuffer = new Pbuffer(width, height, pixelFormat, null);
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
MacNative.h 44 void nsDestroyPBuffer(void* pbuffer);
MacNative.m 24 // if it was last bounded to a pbuffer or a window.
26 // a Pbuffer, before we bind it to a window we must
27 // release it form the pbuffer by calling the
33 // to a window and it was previously bound to a Pbuffer.
145 void nsDestroyPBuffer(void* pbuffer){
146 NSOpenGLPixelBuffer *pbuf = (NSOpenGLPixelBuffer*)pbuffer;
EglMacApi.cpp 39 EGLint window,pbuffer; local
48 getPixelFormatAttrib(*frmt,MAC_DRAW_TO_PBUFFER,&pbuffer);
51 if(pbuffer) supportedSurfaces |= EGL_PBUFFER_BIT;
184 case EglSurface::PBUFFER:
EglWindowsApi.cpp 100 PBUFFER = 1,
135 m_type(PBUFFER){
344 EGLint window,bitmap,pbuffer,transparent; local
366 IS_TRUE(s_wglExtProcs->wglGetPixelFormatAttribivARB(dpy,index,0,1,&attribs[2],&pbuffer));
369 if(pbuffer) supportedSurfaces |= EGL_PBUFFER_BIT;
  /hardware/qcom/media/mm-video/vidc/vdec/src/
mp4_utils.cpp 265 bool MP4_Utils::is_notcodec_vop(unsigned char *pbuffer, unsigned int len)
270 if (!vop_time_found || !pbuffer || len < 5) {
273 if((pbuffer[0] == 0) && (pbuffer[1] == 0) && (pbuffer[2] == 1) && (pbuffer[3] == 0xB6)){
278 vop_type = (pbuffer[index] & 0xc0) >> 6;
281 modulo_bit = pbuffer[index] & (1 << (7-bits_parsed));
296 not_coded = pbuffer[index] & (1 << (7 - bits_parsed));
  /external/webkit/Source/WebCore/platform/graphics/gtk/
GraphicsContext3DInternal.cpp 142 // We will be rendering to a texture, so our pbuffer does not need to be large.
144 GLXPbuffer pbuffer = glXCreatePbuffer(sharedDisplay(), configs[0], pbufferAttributes); local
145 if (!pbuffer) {
154 return new GraphicsContext3DInternal(context, pbuffer);
195 GraphicsContext3DInternal::GraphicsContext3DInternal(GLXContext context, GLXPbuffer pbuffer)
197 , m_pbuffer(pbuffer)
  /hardware/qcom/media/mm-video/vidc/venc/test/
video_encoder_test.c 445 munmap ( ptemp [i]->pbuffer,ptemp [i]->maped_size);
446 ptemp [i]->pbuffer = NULL;
469 munmap ( ptemp [i]->pbuffer,ptemp [i]->maped_size);
470 ptemp [i]->pbuffer = NULL;
580 ptemp [i]->pbuffer = mmap(NULL,clp2(buffersize),PROT_READ|PROT_WRITE,
583 ptemp [i]->pbuffer);
584 if (ptemp [i]->pbuffer == MAP_FAILED)
586 ptemp [i]->pbuffer = NULL;
654 enc_buffer.ptrbuffer = encoder_context->ptr_outputbuffer [i]->pbuffer;
682 enc_buffer.ptrbuffer = encoder_context->ptr_inputbuffer [i]->pbuffer;
    [all...]
  /hardware/qcom/media/mm-video/vidc/vdec/inc/
mp4_utils.h 170 bool is_notcodec_vop(unsigned char *pbuffer, unsigned int len);
  /external/harfbuzz/src/
harfbuzz-buffer.c 129 hb_buffer_new( HB_Buffer *pbuffer )
144 *pbuffer = buffer;
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-buffer.c 129 HB_Buffer_new( HB_Buffer *pbuffer )
144 *pbuffer = buffer;
  /frameworks/native/opengl/libagl/
egl.cpp 713 virtual bool initCheck() const { return pbuffer.data != 0; }
716 virtual EGLint getWidth() const { return pbuffer.width; }
717 virtual EGLint getHeight() const { return pbuffer.height; }
719 GGLSurface pbuffer; member in struct:android::egl_pbuffer_surface_t
734 ALOGE("incompatible pixel format for pbuffer (format=%d)", f);
735 pbuffer.data = 0;
738 pbuffer.version = sizeof(GGLSurface);
739 pbuffer.width = w;
740 pbuffer.height = h;
741 pbuffer.stride = w
    [all...]
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_vidc_enc.h 282 unsigned char *pbuffer; member in struct:venc_bufferpayload
417 unsigned char *pbuffer; member in struct:venc_recon_addr
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_vidc_enc.h 486 unsigned char *pbuffer; member in struct:venc_bufferpayload
614 unsigned char *pbuffer; member in struct:venc_recon_addr
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/GL/
glx.h 364 extern Bool glXBindTexImageARB(Display *dpy, GLXPbuffer pbuffer, int buffer);
365 extern Bool glXReleaseTexImageARB(Display *dpy, GLXPbuffer pbuffer, int buffer);
glxext.h 617 typedef Bool ( * PFNGLXASSOCIATEDMPBUFFERSGIXPROC) (Display *dpy, GLXPbufferSGIX pbuffer, DMparams *params, DMbuffer dmbuffer);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/GL/
glx.h 364 extern Bool glXBindTexImageARB(Display *dpy, GLXPbuffer pbuffer, int buffer);
365 extern Bool glXReleaseTexImageARB(Display *dpy, GLXPbuffer pbuffer, int buffer);
glxext.h 617 typedef Bool ( * PFNGLXASSOCIATEDMPBUFFERSGIXPROC) (Display *dpy, GLXPbufferSGIX pbuffer, DMparams *params, DMbuffer dmbuffer);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/GL/
glx.h 364 extern Bool glXBindTexImageARB(Display *dpy, GLXPbuffer pbuffer, int buffer);
365 extern Bool glXReleaseTexImageARB(Display *dpy, GLXPbuffer pbuffer, int buffer);
glxext.h 617 typedef Bool ( * PFNGLXASSOCIATEDMPBUFFERSGIXPROC) (Display *dpy, GLXPbufferSGIX pbuffer, DMparams *params, DMbuffer dmbuffer);
  /hardware/qcom/media/mm-video/vidc/venc/src/
video_encoder_device.cpp     [all...]
video_encoder_device_copper.cpp     [all...]

Completed in 838 milliseconds