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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/opengl/java/javax/microedition/khronos/egl/
EGLConfig.java 19 public abstract class EGLConfig
  /frameworks/base/opengl/java/android/opengl/
EGLConfig.java 21 * Wrapper class for native EGLConfig objects.
24 public class EGLConfig extends EGLObjectHandle {
25 private EGLConfig(long handle) {
32 if (!(o instanceof EGLConfig)) return false;
34 EGLConfig that = (EGLConfig) o;
  /frameworks/native/opengl/tools/glgen/static/egl/
EGLConfig.java 21 * Wrapper class for native EGLConfig objects.
24 public class EGLConfig extends EGLObjectHandle {
25 private EGLConfig(long handle) {
32 if (!(o instanceof EGLConfig)) return false;
34 EGLConfig that = (EGLConfig) o;
  /frameworks/native/opengl/tools/glgen/stubs/egl/
eglCreatePbufferFromClientBuffer.java 1 // C function EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list )
7 EGLConfig config,
19 EGLConfig config,
eglCreateWindowSurface.java 1 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
5 EGLConfig config,
13 EGLConfig config,
20 EGLConfig config,
  /device/generic/goldfish/opengl/system/egl/
eglDisplay.h 51 EGLBoolean getConfigAttrib(EGLConfig config, EGLint attrib, EGLint * value);
52 EGLBoolean setConfigAttrib(EGLConfig config, EGLint attrib, EGLint value);
53 EGLBoolean getConfigGLPixelFormat(EGLConfig config, GLenum * format);
54 EGLBoolean getConfigNativePixelFormat(EGLConfig config, PixelFormat * format);
56 void dumpConfig(EGLConfig config);
61 EGLBoolean getAttribValue(EGLConfig config, EGLint attribIdxi, EGLint * value);
62 EGLBoolean setAttribValue(EGLConfig config, EGLint attribIdxi, EGLint value);
eglContext.h 29 EGLContext_t(EGLDisplay dpy, EGLConfig config, EGLContext_t* shareCtx);
33 EGLConfig config;
  /external/deqp/modules/egl/
teglChooseConfigReference.hpp 34 void chooseConfigReference (const tcu::egl::Display& display, std::vector<EGLConfig>& dst, const std::vector<std::pair<EGLenum, EGLint> >& attributes);
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLConfigImpl.java 21 public class EGLConfigImpl extends EGLConfig {
  /frameworks/native/opengl/tests/angeles/include/GLES/
egltypes.h 7 typedef void *EGLConfig;
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.h 31 EGLConfig eglConfig() { return m_config; }
35 static EGLConfig getEglConfig(EGLDisplay eglDisplay, SurfaceConfig config);
40 RendererSurface(EGLDisplay display, NativeWindowType window, EGLSurface surface, EGLConfig config) :
48 EGLConfig m_config;
  /frameworks/native/opengl/tests/include/
EGLUtils.h 43 EGLConfig* outConfig);
49 EGLConfig* outConfig);
80 EGLConfig* outConfig)
94 EGLConfig* const configs = (EGLConfig*)malloc(sizeof(EGLConfig)*numConfigs);
101 EGLConfig config = NULL;
125 EGLConfig* outConfig)
glTestLib.h 32 void glTestPrintEGLConfiguration(EGLDisplay dpy, EGLConfig config);
  /external/deqp/framework/egl/
egluUtil.hpp 49 std::vector<EGLConfig> getConfigs (EGLDisplay display);
50 std::vector<EGLConfig> chooseConfig (EGLDisplay display, const AttribMap& attribs);
51 EGLConfig chooseSingleConfig (EGLDisplay display, const AttribMap& attribs);
52 EGLint getConfigAttribInt (EGLDisplay display, EGLConfig config, EGLint attrib);
57 EGLSurface createWindowSurface (NativeDisplay& nativeDisplay, NativeWindow& window, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList);
58 EGLSurface createPixmapSurface (NativeDisplay& nativeDisplay, NativePixmap& pixmap, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList);
tcuEgl.hpp 60 void getConfigs (std::vector<EGLConfig>& configs) const;
61 void chooseConfig (const EGLint* attributeList, std::vector<EGLConfig>& configs) const;
63 EGLint getConfigAttrib (EGLConfig config, EGLint attribute) const;
64 void describeConfig (EGLConfig config, tcu::PixelFormat& pixelFormat) const;
65 void describeConfig (EGLConfig config, eglu::ConfigInfo& info) const;
115 WindowSurface (Display& display, EGLConfig config, EGLNativeWindowType nativeWindow, const EGLint* attribList);
125 PixmapSurface (Display& display, EGLConfig config, EGLNativePixmapType nativePixmap, const EGLint* attribList);
132 PbufferSurface (Display& display, EGLConfig config, const EGLint* attribList);
139 Context (const Display& display, EGLConfig config, const EGLint* attribList, EGLenum api);
144 EGLConfig getConfig (void) const { return m_config;
    [all...]
egluApiPrototypes.inl 10 EGLBoolean eglGetConfigs (EGLDisplay dpy, EGLConfig* configs, EGLint config_size, EGLint* num_config);
11 EGLBoolean eglChooseConfig (EGLDisplay dpy, const EGLint* attrib_list, EGLConfig* configs, EGLint config_size, EGLint* num_config);
12 EGLBoolean eglGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint* value);
13 EGLSurface eglCreateWindowSurface (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint* attrib_list);
14 EGLSurface eglCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint* attrib_list);
15 EGLSurface eglCreatePixmapSurface (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint* attrib_list);
22 EGLSurface eglCreatePbufferFromClientBuffer (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint* attrib_list);
27 EGLContext eglCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint* attrib_list);
  /sdk/emulator/opengl/host/libs/libOpenglRender/
FBConfig.h 40 EGLConfig getEGLConfig() const { return m_eglConfig; }
47 FBConfig(EGLDisplay p_eglDpy, EGLConfig p_eglCfg);
56 EGLConfig m_eglConfig;
  /external/chromium_org/third_party/angle/src/libEGL/
Display.h 43 bool getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig);
44 bool getConfigAttrib(EGLConfig config, EGLint attribute, EGLint *value);
46 EGLSurface createWindowSurface(HWND window, EGLConfig config, const EGLint *attribList);
47 EGLSurface createOffscreenSurface(EGLConfig config, HANDLE shareHandle, const EGLint *attribList);
48 EGLContext createContext(EGLConfig configHandle, EGLint clientVersion, const gl::Context *shareContext, bool notifyResets, bool robustAccess);
54 bool isValidConfig(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) {
  /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*);
  /sdk/emulator/opengl/tests/EGL_host_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*);
  /frameworks/native/opengl/tools/glgen/specs/egl/
EGL14.spec 6 EGLBoolean eglGetConfigs ( EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config )
7 EGLBoolean eglChooseConfig ( EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config )
8 EGLBoolean eglGetConfigAttrib ( EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value )
9 EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
10 EGLSurface eglCreatePbufferSurface ( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list )
11 EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )
18 EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list )
23 EGLContext eglCreateContext ( EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list )
  /external/chromium_org/gpu/gles2_conform_support/egl/
display.h 53 bool IsValidConfig(EGLConfig config);
55 EGLConfig* configs, EGLint config_size, EGLint* num_config);
56 bool GetConfigs(EGLConfig* configs, EGLint config_size, EGLint* num_config);
57 bool GetConfigAttrib(EGLConfig config, EGLint attribute, EGLint* value);
62 EGLSurface CreateWindowSurface(EGLConfig config,
70 EGLContext CreateContext(EGLConfig config,

Completed in 381 milliseconds

1 2 3 4 5 6 7 8 91011>>