Lines Matching refs:config
133 EGLContext_t::EGLContext_t(EGLDisplay dpy, EGLConfig config, EGLContext_t* shareCtx) : in EGLContext_t() argument
135 config(config), in EGLContext_t()
171 EGLConfig config; member
174 egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType);
208 egl_surface_t::egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType) in egl_surface_t() argument
209 : dpy(dpy), config(config), surfaceType(surfaceType), rcSurface(0) in egl_surface_t()
230 EGLDisplay dpy, EGLConfig config, EGLint surfType,
240 EGLDisplay dpy, EGLConfig config, EGLint surfType,
249 EGLDisplay dpy, EGLConfig config, EGLint surfType, in egl_window_surface_t() argument
251 : egl_surface_t(dpy, config, surfType), in egl_window_surface_t()
271 rcSurface = rcEnc->rcCreateWindowSurface(rcEnc, (uint32_t)config, in init()
284 EGLDisplay dpy, EGLConfig config, EGLint surfType, in create() argument
288 dpy, config, surfType, window); in create()
334 static egl_pbuffer_surface_t* create(EGLDisplay dpy, EGLConfig config,
345 egl_pbuffer_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfType,
352 egl_pbuffer_surface_t::egl_pbuffer_surface_t(EGLDisplay dpy, EGLConfig config, in egl_pbuffer_surface_t() argument
354 : egl_surface_t(dpy, config, surfType), in egl_pbuffer_surface_t()
374 rcSurface = rcEnc->rcCreateWindowSurface(rcEnc, (uint32_t)config, in init()
394 EGLConfig config, EGLint surfType, int32_t w, int32_t h, in create() argument
397 egl_pbuffer_surface_t* pb = new egl_pbuffer_surface_t(dpy, config, surfType, in create()
594 EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value) in eglGetConfigAttrib() argument
597 VALIDATE_CONFIG(config, EGL_FALSE); in eglGetConfigAttrib()
599 if (s_display.getConfigAttrib(config, attribute, value)) in eglGetConfigAttrib()
609 EGLSurface eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const … in eglCreateWindowSurface() argument
612 VALIDATE_CONFIG(config, EGL_FALSE); in eglCreateWindowSurface()
618 …if (s_display.getConfigAttrib(config, EGL_SURFACE_TYPE, &surfaceType) == EGL_FALSE) return EGL_… in eglCreateWindowSurface()
629 &s_display, config, surfaceType, static_cast<ANativeWindow*>(win)); in eglCreateWindowSurface()
637 EGLSurface eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list) in eglCreatePbufferSurface() argument
640 VALIDATE_CONFIG(config, EGL_FALSE); in eglCreatePbufferSurface()
643 …if (s_display.getConfigAttrib(config, EGL_SURFACE_TYPE, &surfaceType) == EGL_FALSE) return EGL_… in eglCreatePbufferSurface()
679 if (s_display.getConfigGLPixelFormat(config, &pixelFormat) == EGL_FALSE) in eglCreatePbufferSurface()
682 egl_surface_t* surface = egl_pbuffer_surface_t::create(dpy, config, in eglCreatePbufferSurface()
695 EGLSurface eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, con… in eglCreatePixmapSurface() argument
725 ret = s_display.getConfigAttrib(surface->config, EGL_CONFIG_ID, value); in eglQuerySurface()
783 …uffer(EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *att… in eglCreatePbufferFromClientBuffer() argument
855 EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLin… in eglCreateContext() argument
858 VALIDATE_CONFIG(config, EGL_NO_CONTEXT); in eglCreateContext()
876 uint32_t rcContext = rcEnc->rcCreateContext(rcEnc, (uint32_t)config, rcShareCtx, version); in eglCreateContext()
882 EGLContext_t * context = new EGLContext_t(dpy, config, shareCtx); in eglCreateContext()
1049 ret = s_display.getConfigAttrib(context->config, EGL_CONFIG_ID, value); in eglQueryContext()