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

  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
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...]
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...]
  /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)
  /sdk/emulator/opengl/host/libs/Translator/EGL/
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;
  /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

Completed in 266 milliseconds