Searched defs:dpy (Results 1 - 25 of 51) sorted by relevance

123

/frameworks/native/opengl/tools/glgen/stubs/egl/
H A DeglQueryString.java1 // C function const char * eglQueryString ( EGLDisplay dpy, EGLint name )
4 EGLDisplay dpy,
3 eglQueryString( EGLDisplay dpy, int name ) argument
H A DeglCreatePbufferFromClientBuffer.java1 // C function EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list )
4 EGLDisplay dpy,
16 EGLDisplay dpy,
3 eglCreatePbufferFromClientBuffer( EGLDisplay dpy, int buftype, int buffer, EGLConfig config, int[] attrib_list, int offset ) argument
15 eglCreatePbufferFromClientBuffer( EGLDisplay dpy, int buftype, long buffer, EGLConfig config, int[] attrib_list, int offset ) argument
H A DeglCreateWindowSurface.java1 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
4 EGLDisplay dpy,
12 EGLDisplay dpy,
19 public static EGLSurface eglCreateWindowSurface(EGLDisplay dpy, argument
38 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset);
40 surface = _eglCreateWindowSurfaceTexture(dpy, config,
3 _eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
11 _eglCreateWindowSurfaceTexture( EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
H A DeglQueryString.cpp1 /* const char * eglQueryString ( EGLDisplay dpy, EGLint name ) */
4 (JNIEnv *_env, jobject _this, jobject dpy, jint name) {
6 (EGLDisplay)fromEGLHandle(_env, egldisplayGetHandleID, dpy),
3 android_eglQueryString__Landroind_opengl_EGLDisplay_2I(JNIEnv *_env, jobject _this, jobject dpy, jint name) argument
H A DeglCreatePbufferFromClientBuffer.cpp1 /* EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list ) */
4 (JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jlong buffer, jobject config, jintArray attrib_list_ref, jint offset) {
9 EGLDisplay dpy_native = (EGLDisplay) fromEGLHandle(_env, egldisplayGetHandleID, dpy);
67 (JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jint buffer, jobject config, jintArray attrib_list_ref, jint offset) {
72 return android_eglCreatePbufferFromClientBuffer(_env, _this, dpy, buftype, buffer, config, attrib_list_ref, offset);
3 android_eglCreatePbufferFromClientBuffer(JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jlong buffer, jobject config, jintArray attrib_list_ref, jint offset) argument
66 android_eglCreatePbufferFromClientBufferInt(JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jint buffer, jobject config, jintArray attrib_list_ref, jint offset) argument
H A DeglCreateWindowSurface.cpp1 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
4 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) {
9 EGLDisplay dpy_native = (EGLDisplay) fromEGLHandle(_env, egldisplayGetHandleID, dpy);
78 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
81 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) {
86 EGLDisplay dpy_native = (EGLDisplay) fromEGLHandle(_env, egldisplayGetHandleID, dpy);
3 android_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
80 android_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLDisplayImpl.java24 public EGLDisplayImpl(long dpy) { argument
25 mEGLDisplay = dpy;
/frameworks/base/opengl/java/android/opengl/
H A DEGLExt.java37 // C function EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time )
40 EGLDisplay dpy,
39 eglPresentationTimeANDROID( EGLDisplay dpy, EGLSurface sur, long time ) argument
/frameworks/native/libs/gui/
H A DSyncFeatures.cpp31 EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name);
41 EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); local
44 const char* exts = eglQueryStringImplementationANDROID(dpy, EGL_EXTENSIONS);
/frameworks/native/opengl/tests/configdump/
H A Dconfigdump.cpp71 EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); local
72 eglInitialize(dpy, 0, 0);
73 eglGetConfigs(dpy, NULL, 0, &n);
75 eglGetConfigs(dpy, configs, n, &n);
81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
87 eglTerminate(dpy);
/frameworks/native/opengl/tests/finish/
H A Dfinish.cpp47 EGLDisplay dpy; local
52 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
53 eglInitialize(dpy, &majorVersion, &minorVersion);
56 dpy, configAttribs, window, &config);
62 surface = eglCreateWindowSurface(dpy, config, window, NULL);
63 context = eglCreateContext(dpy, config, NULL, NULL);
64 eglMakeCurrent(dpy, surface, surface, context);
65 eglQuerySurface(dpy, surface, EGL_WIDTH, &w);
66 eglQuerySurface(dpy, surface, EGL_HEIGHT, &h);
114 eglSwapBuffers(dpy, surfac
[all...]
/frameworks/native/opengl/tests/lib/
H A DglTestLib.cpp69 void glTestPrintEGLConfiguration(EGLDisplay dpy, EGLConfig config) argument
111 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute,
/frameworks/native/opengl/tests/textures/
H A Dtextures.cpp43 EGLDisplay dpy; local
48 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
49 eglInitialize(dpy, &majorVersion, &minorVersion);
52 dpy, configAttribs, window, &config);
58 surface = eglCreateWindowSurface(dpy, config, window, NULL);
59 context = eglCreateContext(dpy, config, NULL, NULL);
60 eglMakeCurrent(dpy, surface, surface, context);
61 eglQuerySurface(dpy, surface, EGL_WIDTH, &w);
62 eglQuerySurface(dpy, surface, EGL_HEIGHT, &h);
117 eglSwapBuffers(dpy, surfac
[all...]
/frameworks/native/opengl/tests/filter/
H A Dfilter.cpp40 EGLDisplay dpy; local
49 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
50 eglInitialize(dpy, &majorVersion, &minorVersion);
53 dpy, s_configAttribs, window, &config);
54 surface = eglCreateWindowSurface(dpy, config, window, NULL);
57 eglChooseConfig(dpy, s_configAttribs, &config, 1, &numConfigs);
59 surface = eglCreatePbufferSurface(dpy, config, attribs);
64 context = eglCreateContext(dpy, config, NULL, NULL);
65 eglMakeCurrent(dpy, surface, surface, context);
66 eglQuerySurface(dpy, surfac
[all...]
/frameworks/native/opengl/tests/gl_perf/
H A Dgl2_perf.cpp56 static EGLDisplay dpy; variable
75 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
77 if (dpy == EGL_NO_DISPLAY) {
82 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
91 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
99 surface = eglCreateWindowSurface(dpy, myConfig, window, NULL);
106 context = eglCreateContext(dpy, myConfig, EGL_NO_CONTEXT, context_attribs);
112 returnValue = eglMakeCurrent(dpy, surface, surface, context);
117 eglQuerySurface(dpy, surface, EGL_WIDTH, &w);
119 eglQuerySurface(dpy, surfac
[all...]
/frameworks/native/opengl/tests/include/
H A DEGLUtils.h40 EGLDisplay dpy,
46 EGLDisplay dpy,
77 EGLDisplay dpy,
91 if (eglGetConfigs(dpy, NULL, 0, &numConfigs) == EGL_FALSE)
95 if (eglChooseConfig(dpy, attrs, configs, numConfigs, &n) == EGL_FALSE) {
104 eglGetConfigAttrib(dpy, configs[i], EGL_NATIVE_VISUAL_ID, &nativeVisualId);
122 EGLDisplay dpy,
137 return selectConfigForPixelFormat(dpy, attrs, format, outConfig);
76 selectConfigForPixelFormat( EGLDisplay dpy, EGLint const* attrs, int32_t format, EGLConfig* outConfig) argument
121 selectConfigForNativeWindow( EGLDisplay dpy, EGLint const* attrs, EGLNativeWindowType window, EGLConfig* outConfig) argument
/frameworks/native/opengl/tests/linetex/
H A Dlinetex.cpp45 EGLDisplay dpy; local
50 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
51 eglInitialize(dpy, &majorVersion, &minorVersion);
54 dpy, configAttribs, window, &config);
60 surface = eglCreateWindowSurface(dpy, config, window, NULL);
61 context = eglCreateContext(dpy, config, NULL, NULL);
62 eglMakeCurrent(dpy, surface, surface, context);
63 eglQuerySurface(dpy, surface, EGL_WIDTH, &w);
64 eglQuerySurface(dpy, surface, EGL_HEIGHT, &h);
108 eglSwapBuffers(dpy, surfac
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_object.cpp64 egl_surface_t::egl_surface_t(egl_display_t* dpy, EGLConfig config, argument
67 egl_object_t(dpy), surface(surface), config(config), win(win), cnx(cnx)
87 egl_context_t::egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config, argument
89 egl_object_t(get_display_nowake(dpy)), dpy(dpy), context(context),
/frameworks/native/opengl/tests/fillrate/
H A Dfillrate.cpp46 EGLDisplay dpy; local
51 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
52 eglInitialize(dpy, &majorVersion, &minorVersion);
55 dpy, configAttribs, window, &config);
61 surface = eglCreateWindowSurface(dpy, config, window, NULL);
62 context = eglCreateContext(dpy, config, NULL, NULL);
63 eglMakeCurrent(dpy, surface, surface, context);
64 eglQuerySurface(dpy, surface, EGL_WIDTH, &w);
65 eglQuerySurface(dpy, surface, EGL_HEIGHT, &h);
120 eglSwapInterval(dpy,
[all...]
/frameworks/native/opengl/tests/swapinterval/
H A Dswapinterval.cpp45 EGLDisplay dpy; local
51 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
52 eglInitialize(dpy, &majorVersion, &minorVersion);
53 eglGetConfigs(dpy, NULL, 0, &numConfigs);
57 dpy, configAttribs, window, &config);
60 eglTerminate(dpy);
65 eglGetConfigAttrib(dpy, config, EGL_RED_SIZE, &r);
66 eglGetConfigAttrib(dpy, config, EGL_GREEN_SIZE, &g);
67 eglGetConfigAttrib(dpy, config, EGL_BLUE_SIZE, &b);
68 eglGetConfigAttrib(dpy, confi
[all...]
/frameworks/rs/driver/
H A DrsdGL.cpp86 static void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { argument
127 EGLBoolean returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_eglapi.cpp202 void GLTrace_eglSwapBuffers(void *dpy, void *draw) { argument
203 gltrace::GLTrace_eglSwapBuffers(dpy, draw);
/frameworks/native/opengl/tests/angeles/
H A Dapp-linux.cpp136 EGLDisplay dpy; local
140 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
141 eglInitialize(dpy, &majorVersion, &minorVersion);
144 dpy, configAttribs, window, &config);
150 surface = eglCreateWindowSurface(dpy, config, window, NULL);
155 context = eglCreateContext(dpy, config, NULL, NULL);
159 eglMakeCurrent(dpy, surface, surface, context);
162 eglQuerySurface(dpy, surface, EGL_WIDTH, &sWindowWidth);
163 eglQuerySurface(dpy, surface, EGL_HEIGHT, &sWindowHeight);
165 sEglDisplay = dpy;
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_EGLExt.cpp134 /* EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time ) */
137 (JNIEnv *_env, jobject _this, jobject dpy, jobject sur, jlong time) {
139 EGLDisplay dpy_native = (EGLDisplay) fromEGLHandle(_env, egldisplayGetHandleID, dpy);
136 android_eglPresentationTimeANDROID(JNIEnv *_env, jobject _this, jobject dpy, jobject sur, jlong time) argument
/frameworks/native/cmds/flatland/
H A DGLHelper.cpp226 sp<IBinder> dpy = mSurfaceComposerClient->getBuiltInDisplay(0); local
227 if (dpy == NULL) {
233 status_t err = mSurfaceComposerClient->getDisplayInfo(dpy, &info);

Completed in 272 milliseconds

123