Lines Matching refs:surface

97          _eglLog(_EGL_WARNING, "bad surface attribute 0x%04x", attr);
108 * Parse the list of surface attributes and return the proper error code.
161 /* window surface attributes */
185 /* pbuffer surface attributes */
258 /* no pixmap surface specific attributes */
265 _eglLog(_EGL_WARNING, "bad surface attribute 0x%04x", attr);
311 /* The config can't be used to create a surface of this type */
352 _eglQuerySurface(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surface,
357 *value = surface->Width;
360 *value = surface->Height;
363 *value = surface->Config->ConfigID;
366 *value = surface->LargestPbuffer;
370 if (surface->Type == EGL_PBUFFER_BIT)
371 *value = surface->TextureFormat;
374 if (surface->Type == EGL_PBUFFER_BIT)
375 *value = surface->TextureTarget;
378 if (surface->Type == EGL_PBUFFER_BIT)
379 *value = surface->MipmapTexture;
382 if (surface->Type == EGL_PBUFFER_BIT)
383 *value = surface->MipmapLevel;
386 *value = surface->SwapBehavior;
389 *value = surface->RenderBuffer;
392 *value = surface->AspectRatio;
395 *value = surface->HorizontalResolution;
398 *value = surface->VerticalResolution;
401 *value = surface->MultisampleResolve;
404 *value = surface->VGAlphaFormat;
407 *value = surface->VGColorspace;
410 *value = surface->PostSubBufferSupportedNV;
425 _eglSurfaceAttrib(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surface,
433 confval = surface->Config->RenderableType;
438 surface->MipmapLevel = value;
445 confval = surface->Config->SurfaceType;
455 surface->MultisampleResolve = value;
462 confval = surface->Config->SurfaceType;
472 surface->SwapBehavior = value;
486 _eglBindTexImage(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surface,
498 if (!(surface->Type & texture_type)) {
503 if (surface->TextureFormat == EGL_NO_TEXTURE) {
508 if (surface->TextureTarget == EGL_NO_TEXTURE) {
518 surface->BoundToTexture = EGL_TRUE;