/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...] |
/external/chromium_org/third_party/mesa/src/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 | 74 struct apple_glx_pbuffer *pbuf = &d->types.pbuffer; 91 apple_glx_diagnostic("made pbuffer drawable 0x%lx current\n", d->drawable); 99 struct apple_glx_pbuffer *pbuf = &d->types.pbuffer; 103 apple_glx_diagnostic("destroying pbuffer for drawable 0x%lx\n", 154 pbuf = &d->types.pbuffer; 271 pbuf = &d->types.pbuffer; 293 "unable to find the largest pbuffer!\n"); 324 d->types.pbuffer.event_mask = mask; 341 *mask = d->types.pbuffer.event_mask;
|
apple_glx_drawable.h | 109 struct apple_glx_pbuffer pbuffer; member in union:apple_glx_drawable::__anon15832 198 /* Returns true if the pbuffer was invalid. */ 201 /* Returns true if the pbuffer was valid and the attribute. */
|
/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 | 74 struct apple_glx_pbuffer *pbuf = &d->types.pbuffer; 91 apple_glx_diagnostic("made pbuffer drawable 0x%lx current\n", d->drawable); 99 struct apple_glx_pbuffer *pbuf = &d->types.pbuffer; 103 apple_glx_diagnostic("destroying pbuffer for drawable 0x%lx\n", 154 pbuf = &d->types.pbuffer; 271 pbuf = &d->types.pbuffer; 293 "unable to find the largest pbuffer!\n"); 324 d->types.pbuffer.event_mask = mask; 341 *mask = d->types.pbuffer.event_mask;
|
apple_glx_drawable.h | 109 struct apple_glx_pbuffer pbuffer; member in union:apple_glx_drawable::__anon26299 198 /* Returns true if the pbuffer was invalid. */ 201 /* Returns true if the pbuffer was valid and the attribute. */
|
/hardware/qcom/media/mm-video-legacy/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));
|
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/ |
mp4_utils.cpp | 300 bool MP4_Utils::is_notcodec_vop(unsigned char *pbuffer, unsigned int len) 306 if (!vop_time_found || !pbuffer || len < 5) { 310 if ((pbuffer[0] == 0) && (pbuffer[1] == 0) && (pbuffer[2] == 1) && (pbuffer[3] == 0xB6)) { 316 vop_type = (pbuffer[index] & 0xc0) >> 6; 320 modulo_bit = pbuffer[index] & (1 << (7-bits_parsed)); 339 not_coded = pbuffer[index] & (1 << (7 - bits_parsed));
|
/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:
|
/hardware/qcom/media/mm-video-legacy/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-v4l2/vidc/venc/test/ |
video_encoder_test.c | 423 munmap ( ptemp [i]->pbuffer,ptemp [i]->maped_size); 424 ptemp [i]->pbuffer = NULL; 443 munmap ( ptemp [i]->pbuffer,ptemp [i]->maped_size); 444 ptemp [i]->pbuffer = NULL; 541 ptemp [i]->pbuffer = mmap(NULL,clp2(buffersize),PROT_READ|PROT_WRITE, 544 ptemp [i]->pbuffer); 546 if (ptemp [i]->pbuffer == MAP_FAILED) { 547 ptemp [i]->pbuffer = NULL; 610 enc_buffer.ptrbuffer = encoder_context->ptr_outputbuffer [i]->pbuffer; 638 enc_buffer.ptrbuffer = encoder_context->ptr_inputbuffer [i]->pbuffer; [all...] |
/hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/ |
mp4_utils.h | 170 bool is_notcodec_vop(unsigned char *pbuffer, unsigned int len);
|
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/ |
mp4_utils.h | 167 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
|
/hardware/qcom/msm8x74/kernel-headers/linux/ |
msm_vidc_enc.h | 305 unsigned char *pbuffer; member in struct:venc_bufferpayload 444 unsigned char *pbuffer; member in struct:venc_recon_addr
|
/hardware/qcom/msm8x74/original-kernel-headers/linux/ |
msm_vidc_enc.h | 534 unsigned char *pbuffer; member in struct:venc_bufferpayload 667 unsigned char *pbuffer; member in struct:venc_recon_addr
|
/external/chromium_org/third_party/mesa/src/src/glx/ |
glx_pbuffer.c | 27 * Implementation of pbuffer related functions. 385 req->pbuffer = (GLXPbuffer) drawable; 392 * Create a non-pbuffer GLX drawable. 456 * Destroy a non-pbuffer GLX drawable. 475 * Create a pbuffer. 523 req->pbuffer = id; 571 * Destroy a pbuffer. 602 req->pbuffer = (GLXPbuffer) drawable; 627 * Create a new pbuffer. 642 * Create a new pbuffer [all...] |