HomeSort by relevance Sort by last modified time
    Searched refs:EGLConfig (Results 1 - 25 of 238) sorted by null

1 2 3 4 5 6 7 8 910

  /external/libkmsxx/kmscube/
cube-egl.h 12 EGLConfig config() const { return m_config; }
17 EGLConfig m_config;
  /device/generic/goldfish-opengl/system/egl/
eglDisplay.h 59 EGLBoolean getConfigAttrib(EGLConfig config, EGLint attrib, EGLint * value);
60 EGLBoolean setConfigAttrib(EGLConfig config, EGLint attrib, EGLint value);
61 EGLBoolean getConfigGLPixelFormat(EGLConfig config, GLenum * format);
62 EGLBoolean getConfigNativePixelFormat(EGLConfig config, PixelFormat * format);
64 void dumpConfig(EGLConfig config);
78 EGLBoolean getAttribValue(EGLConfig config, EGLint attribIdxi, EGLint * value);
79 EGLBoolean setAttribValue(EGLConfig config, EGLint attribIdxi, EGLint value);
eglContext.h 29 EGLContext_t(EGLDisplay dpy, EGLConfig config, EGLContext_t* shareCtx, int maj, int min);
33 EGLConfig config;
  /cts/tests/tests/opengl/src/android/opengl/cts/
RendererEightShaderTest.java 18 import javax.microedition.khronos.egl.EGLConfig;
30 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
RendererNineShaderTest.java 18 import javax.microedition.khronos.egl.EGLConfig;
30 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
RendererOneProgramTest.java 18 import javax.microedition.khronos.egl.EGLConfig;
31 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
Egl10Utils.java 23 import javax.microedition.khronos.egl.EGLConfig;
30 static EGLConfig chooseConfig(EGL10 egl, EGLDisplay display, int[] configSpec) {
42 EGLConfig[] configs = new EGLConfig[numConfigs];
46 EGLConfig config = chooseConfig(egl, display, configs, configSpec);
73 private static EGLConfig chooseConfig(EGL10 egl, EGLDisplay display,
74 EGLConfig[] configs, int[] configSpec) {
83 for (EGLConfig config : configs) {
109 EGLConfig config, int attribute) {
GLSurfaceViewCtsActivity.java 24 import javax.microedition.khronos.egl.EGLConfig;
43 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
RendererElevenShaderTest.java 19 import javax.microedition.khronos.egl.EGLConfig;
30 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
RendererFiveShaderTest.java 18 import javax.microedition.khronos.egl.EGLConfig;
32 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
RendererFourShaderTest.java 18 import javax.microedition.khronos.egl.EGLConfig;
32 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
RendererSevenShaderTest.java 18 import javax.microedition.khronos.egl.EGLConfig;
30 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
RendererSixShaderTest.java 18 import javax.microedition.khronos.egl.EGLConfig;
30 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
RendererTenShaderTest.java 18 import javax.microedition.khronos.egl.EGLConfig;
31 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
RendererTwelveShaderTest.java 19 import javax.microedition.khronos.egl.EGLConfig;
32 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
egl_proc.h 28 typedef EGLBoolean (* eglGetConfigs_t) (EGLDisplay, EGLConfig*, EGLint, EGLint*);
29 typedef EGLBoolean (* eglChooseConfig_t) (EGLDisplay, const EGLint*, EGLConfig*, EGLint, EGLint*);
30 typedef EGLBoolean (* eglGetConfigAttrib_t) (EGLDisplay, EGLConfig, EGLint, EGLint*);
31 typedef EGLSurface (* eglCreateWindowSurface_t) (EGLDisplay, EGLConfig, EGLNativeWindowType, const EGLint*);
32 typedef EGLSurface (* eglCreatePbufferSurface_t) (EGLDisplay, EGLConfig, const EGLint*);
33 typedef EGLSurface (* eglCreatePixmapSurface_t) (EGLDisplay, EGLConfig, EGLNativePixmapType, const EGLint*);
40 typedef EGLSurface (* eglCreatePbufferFromClientBuffer_t) (EGLDisplay, EGLenum, EGLClientBuffer, EGLConfig, const EGLint*);
45 typedef EGLContext (* eglCreateContext_t) (EGLDisplay, EGLConfig, EGLContext, const EGLint*);
  /device/google/cuttlefish_common/guest/libs/eglwrapper/
egl_wrapper_proc.h 12 typedef EGLBoolean (egl_APIENTRY *eglChooseConfig_wrapper_proc_t) (EGLDisplay, const EGLint*, EGLConfig*, EGLint, EGLint*);
14 typedef EGLContext (egl_APIENTRY *eglCreateContext_wrapper_proc_t) (EGLDisplay, EGLConfig, EGLContext, const EGLint*);
15 typedef EGLSurface (egl_APIENTRY *eglCreatePbufferSurface_wrapper_proc_t) (EGLDisplay, EGLConfig, const EGLint*);
16 typedef EGLSurface (egl_APIENTRY *eglCreatePixmapSurface_wrapper_proc_t) (EGLDisplay, EGLConfig, EGLNativePixmapType, const EGLint*);
17 typedef EGLSurface (egl_APIENTRY *eglCreateWindowSurface_wrapper_proc_t) (EGLDisplay, EGLConfig, EGLNativeWindowType, const EGLint*);
20 typedef EGLBoolean (egl_APIENTRY *eglGetConfigAttrib_wrapper_proc_t) (EGLDisplay, EGLConfig, EGLint, EGLint*);
21 typedef EGLBoolean (egl_APIENTRY *eglGetConfigs_wrapper_proc_t) (EGLDisplay, EGLConfig*, EGLint, EGLint*);
42 typedef EGLSurface (egl_APIENTRY *eglCreatePbufferFromClientBuffer_wrapper_proc_t) (EGLDisplay, EGLenum, EGLClientBuffer, EGLConfig, const EGLint*);
  /external/deqp/framework/egl/
egluGLUtil.hpp 46 eglw::EGLConfig config,
51 eglw::EGLConfig chooseConfig (const eglw::Library& egl,
egluGLContextFactory.hpp 44 virtual eglw::EGLConfig getEGLConfig (void) const = 0;
  /cts/tests/tests/graphics/src/android/graphics/cts/
SyncTest.java 22 import android.opengl.EGLConfig;
62 private EGLConfig mEglConfig = null;
77 EGLConfig[] configs = new EGLConfig[1];
ASurfaceTextureTest.java 23 import android.opengl.EGLConfig;
47 private EGLConfig mEglConfig = null;
67 EGLConfig[] configs = new EGLConfig[1];
  /external/deqp/modules/egl/
teglChooseConfigReference.hpp 39 void chooseConfigReference (const eglw::Library& egl, eglw::EGLDisplay display, std::vector<eglw::EGLConfig>& dst, const std::vector<std::pair<eglw::EGLenum, eglw::EGLint> >& attributes);
  /external/deqp/framework/egl/wrapper/
eglwFuncPtrLibraryDecl.inl 8 EGLBoolean chooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config) const;
12 EGLContext createContext (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list) const;
15 EGLSurface createPbufferFromClientBuffer (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list) const;
16 EGLSurface createPbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list) const;
17 EGLSurface createPixmapSurface (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list) const;
18 EGLSurface createPlatformPixmapSurface (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttrib *attrib_list) const;
19 EGLSurface createPlatformPixmapSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint *attrib_list) const;
20 EGLSurface createPlatformWindowSurface (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttrib *attrib_list) const;
21 EGLSurface createPlatformWindowSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLint *attrib_list) const;
24 EGLSurface createWindowSurface (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list) const
    [all...]
  /external/swiftshader/src/OpenGL/libEGL/
Display.h 59 bool getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig);
60 bool getConfigAttrib(EGLConfig config, EGLint attribute, EGLint *value);
62 EGLSurface createWindowSurface(EGLNativeWindowType window, EGLConfig config, const EGLAttrib *attribList);
63 EGLSurface createPBufferSurface(EGLConfig config, const EGLint *attribList, EGLClientBuffer clientBuffer = nullptr);
64 EGLContext createContext(EGLConfig configHandle, const Context *shareContext, EGLint clientVersion);
72 bool isValidConfig(EGLConfig config);
  /cts/hostsidetests/sustainedperf/shadertoy_android/src/
GLtestView.java 44 import javax.microedition.khronos.egl.EGLConfig;
58 * an EGLConfig that supports 2.0. This is done by providing a config
63 * - The class must select the surface's format, then choose an EGLConfig
97 /* We need to choose an EGLConfig that matches the format of
112 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) {
116 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
158 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) {
173 EGLConfig[] configs = new EGLConfig[numConfigs];
    [all...]

Completed in 987 milliseconds

1 2 3 4 5 6 7 8 910