Home | History | Annotate | Download | only in libagl

Lines Matching refs:pbuffer

723     virtual     bool        initCheck() const   { return pbuffer.data != 0; }
726 virtual EGLint getWidth() const { return pbuffer.width; }
727 virtual EGLint getHeight() const { return pbuffer.height; }
729 GGLSurface pbuffer;
744 ALOGE("incompatible pixel format for pbuffer (format=%d)", f);
745 pbuffer.data = 0;
748 pbuffer.version = sizeof(GGLSurface);
749 pbuffer.width = w;
750 pbuffer.height = h;
751 pbuffer.stride = w;
752 pbuffer.data = (GGLubyte*)malloc(size);
753 pbuffer.format = f;
756 depth.width = pbuffer.width;
757 depth.height = pbuffer.height;
774 free(pbuffer.data);
778 gl->rasterizer.procs.colorBuffer(gl, &pbuffer);
785 gl->rasterizer.procs.readBuffer(gl, &pbuffer);