Searched refs:depth (Results 76 - 86 of 86) sorted by relevance

1234

/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java1255 public void glClearDepthf(float depth) { argument
1257 arg("depth", depth);
1260 mgl.glClearDepthf(depth);
1264 public void glClearDepthx(int depth) { argument
1266 arg("depth", depth);
1269 mgl.glClearDepthx(depth);
H A DGLES20.java458 // C function void glClearDepthf ( GLclampf depth )
461 float depth
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp215 /* void glClearDepthf ( GLclampf depth ) */
218 (JNIEnv *_env, jobject _this, jfloat depth) {
220 (GLclampf)depth
224 /* void glClearDepthx ( GLclampx depth ) */
227 (JNIEnv *_env, jobject _this, jint depth) {
229 (GLclampx)depth
217 android_glClearDepthf__F(JNIEnv *_env, jobject _this, jfloat depth) argument
226 android_glClearDepthx__I(JNIEnv *_env, jobject _this, jint depth) argument
H A Dandroid_opengl_GLES11Ext.cpp609 /* void glClearDepthxOES ( GLclampx depth ) */
612 (JNIEnv *_env, jobject _this, jint depth) {
614 (GLclampx)depth
2801 /* void glClearDepthfOES ( GLclampf depth ) */
2804 (JNIEnv *_env, jobject _this, jfloat depth) {
2806 (GLclampf)depth
611 android_glClearDepthxOES__I(JNIEnv *_env, jobject _this, jint depth) argument
2803 android_glClearDepthfOES__F(JNIEnv *_env, jobject _this, jfloat depth) argument
H A Dcom_google_android_gles_jni_GLImpl.cpp343 /* void glClearDepthf ( GLclampf depth ) */
346 (JNIEnv *_env, jobject _this, jfloat depth) {
348 (GLclampf)depth
352 /* void glClearDepthx ( GLclampx depth ) */
355 (JNIEnv *_env, jobject _this, jint depth) {
357 (GLclampx)depth
345 android_glClearDepthf__F(JNIEnv *_env, jobject _this, jfloat depth) argument
354 android_glClearDepthx__I(JNIEnv *_env, jobject _this, jint depth) argument
H A Dandroid_opengl_GLES20.cpp383 /* void glClearDepthf ( GLclampf depth ) */
386 (JNIEnv *_env, jobject _this, jfloat depth) {
388 (GLclampf)depth
385 android_glClearDepthf__F(JNIEnv *_env, jobject _this, jfloat depth) argument
/frameworks/native/opengl/include/GLES2/
H A Dgl2.h491 GL_APICALL void GL_APIENTRY glClearDepthf (GLclampf depth);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DDatabaseHelper.java1745 final int depth = parser.getDepth();
1749 parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java4009 final int depth =parser.getDepth();
4013 || parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
/frameworks/base/core/java/android/widget/
H A DTextView.java6826 public void debug(int depth) { argument
6827 super.debug(depth);
6829 String output = debugIndent(depth);
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h1888 SLmillimeter depth

Completed in 1691 milliseconds

1234