Home | History | Annotate | Download | only in libagl

Lines Matching full:pbuffer

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;
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;
742 pbuffer.data = (GGLubyte*)malloc(size);
743 pbuffer.format = f;
746 depth.width = pbuffer.width;
747 depth.height = pbuffer.height;
757 free(pbuffer.data);
761 gl->rasterizer.procs.colorBuffer(gl, &pbuffer);
768 gl->rasterizer.procs.readBuffer(gl, &pbuffer);