Home
last modified time | relevance | path

Searched refs:plane (Results 1 – 22 of 22) sorted by relevance

/frameworks/base/opengl/libagl/
Dvertex.cpp124 GLfixed d = dot4(c->clipPlanes.plane[i].equation.v, v->eye.v); in clipAllPerspective()
164 static void clipPlanex(GLenum plane, const GLfixed* equ, ogles_context_t* c) in clipPlanex() argument
166 const int p = plane - GL_CLIP_PLANE0; in clipPlanex()
172 vec4_t& equation = c->clipPlanes.plane[p].equation; in clipPlanex()
231 void glClipPlanef(GLenum plane, const GLfloat* equ) in glClipPlanef() argument
240 clipPlanex(plane, equx, c); in glClipPlanef()
243 void glClipPlanex(GLenum plane, const GLfixed* equ) in glClipPlanex() argument
246 clipPlanex(plane, equ, c); in glClipPlanex()
Dprimitives.cpp838 GLfixed frustumPlaneDist(int plane, const vec4_t& s) in frustumPlaneDist() argument
840 const GLfixed d = s.v[ plane >> 1 ]; in frustumPlaneDist()
841 return ((plane & 1) ? (s.w - d) : (s.w + d)); in frustumPlaneDist()
890 unsigned int plane = 0; in clip_triangle() local
901 const vec4_t& equation = c->clipPlanes.plane[plane].equation; in clip_triangle()
949 plane++; in clip_triangle()
956 unsigned int plane = 0; in clip_triangle() local
967 GLfixed sd = frustumPlaneDist(plane, s->clip); in clip_triangle()
971 const GLfixed pd = frustumPlaneDist(plane, p->clip); in clip_triangle()
1014 plane++; in clip_triangle()
[all …]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
DGL11.java167 int plane, in glClipPlanef() argument
173 int plane, in glClipPlanef() argument
178 int plane, in glClipPlanex() argument
184 int plane, in glClipPlanex() argument
/frameworks/base/opengl/java/android/opengl/
DGLES11.java181 int plane, in glClipPlanef() argument
189 int plane, in glClipPlanef() argument
196 int plane, in glClipPlanex() argument
204 int plane, in glClipPlanex() argument
DGLES11Ext.java285 int plane, in glClipPlanexOES() argument
293 int plane, in glClipPlanexOES() argument
917 int plane, in glClipPlanefOES() argument
925 int plane, in glClipPlanefOES() argument
DGLErrorWrapper.java846 public void glClipPlanef(int plane, float[] equation, int offset) { in glClipPlanef() argument
848 mgl11.glClipPlanef(plane, equation, offset); in glClipPlanef()
852 public void glClipPlanef(int plane, FloatBuffer equation) { in glClipPlanef() argument
854 mgl11.glClipPlanef(plane, equation); in glClipPlanef()
858 public void glClipPlanex(int plane, int[] equation, int offset) { in glClipPlanex() argument
860 mgl11.glClipPlanex(plane, equation, offset); in glClipPlanex()
864 public void glClipPlanex(int plane, IntBuffer equation) { in glClipPlanex() argument
866 mgl11.glClipPlanex(plane, equation); in glClipPlanex()
DGLLogWrapper.java2586 public void glClipPlanef(int plane, float[] equation, int offset) { in glClipPlanef() argument
2588 arg("plane", plane); in glClipPlanef()
2592 mgl11.glClipPlanef(plane, equation, offset); in glClipPlanef()
2596 public void glClipPlanef(int plane, FloatBuffer equation) { in glClipPlanef() argument
2598 arg("plane", plane); in glClipPlanef()
2601 mgl11.glClipPlanef(plane, equation); in glClipPlanef()
2605 public void glClipPlanex(int plane, int[] equation, int offset) { in glClipPlanex() argument
2607 arg("plane", plane); in glClipPlanex()
2611 mgl11.glClipPlanex(plane, equation, offset); in glClipPlanex()
2615 public void glClipPlanex(int plane, IntBuffer equation) { in glClipPlanex() argument
[all …]
/frameworks/base/opengl/tools/glgen/specs/gles11/
DGLES11.spec4 void glClipPlanef ( GLenum plane, const GLfloat *equation )
5 void glClipPlanex ( GLenum plane, const GLfixed *equation )
DGLES11Ext.spec17 void glClipPlanexOES ( GLenum plane, const GLfixed *equation )
79 void glClipPlanefOES ( GLenum plane, const GLfloat *equation )
/frameworks/base/opengl/tools/glgen/specs/jsr239/
Dglspec-1.14 void glClipPlanef ( GLenum plane, const GLfloat *equation )
5 void glClipPlanex ( GLenum plane, const GLfixed *equation )
/frameworks/base/libs/surfaceflinger/
DSurfaceFlinger.cpp282 const GraphicPlane& plane(mGraphicPlanes[dpy]); in graphicPlane() local
283 return plane; in graphicPlane()
323 GraphicPlane& plane(graphicPlane(dpy)); in readyToRun() local
325 plane.setDisplayHardware(hw); in readyToRun()
342 const GraphicPlane& plane(graphicPlane(dpy)); in readyToRun() local
343 const DisplayHardware& hw = plane.displayHardware(); in readyToRun()
613 GraphicPlane& plane(graphicPlane(dpy)); in handleTransactionLocked() local
614 plane.setOrientation(orientation); in handleTransactionLocked()
617 const DisplayHardware& hw(plane.displayHardware()); in handleTransactionLocked()
677 const GraphicPlane& plane(graphicPlane(0)); in computeVisibleRegions() local
[all …]
/frameworks/base/opengl/libs/GLES_CM/
Dglext_api.in49 void API_ENTRY(glClipPlanexOES)(GLenum plane, const GLfixed *equation) {
50 CALL_GL_API(glClipPlanexOES, plane, equation);
235 void API_ENTRY(glClipPlanefOES)(GLenum plane, const GLfloat *equation) {
236 CALL_GL_API(glClipPlanefOES, plane, equation);
Dgl_api.in10 void API_ENTRY(glClipPlanef)(GLenum plane, const GLfloat *equation) {
11 CALL_GL_API(glClipPlanef, plane, equation);
151 void API_ENTRY(glClipPlanex)(GLenum plane, const GLfixed *equation) {
152 CALL_GL_API(glClipPlanex, plane, equation);
/frameworks/base/opengl/java/com/google/android/gles_jni/
DGLImpl.java1184 int plane, in glClipPlanef() argument
1192 int plane, in glClipPlanef() argument
1199 int plane, in glClipPlanex() argument
1207 int plane, in glClipPlanex() argument
/frameworks/base/opengl/include/GLES/
Dglext.h338 GL_API void GL_APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation);
378 typedef void (GL_APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation);
512 GL_API void GL_APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation);
519 typedef void (GL_APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation);
Dgl.h595 GL_API void GL_APIENTRY glClipPlanef (GLenum plane, const GLfloat *equation);
644 GL_API void GL_APIENTRY glClipPlanex (GLenum plane, const GLfixed *equation);
/frameworks/base/core/jni/
Dandroid_opengl_GLES11.cpp194 (JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) { in android_glClipPlanef__I_3FI() argument
213 (GLenum)plane, in android_glClipPlanef__I_3FI()
227 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { in android_glClipPlanef__ILjava_nio_FloatBuffer_2() argument
234 (GLenum)plane, in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
245 (JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) { in android_glClipPlanex__I_3II() argument
264 (GLenum)plane, in android_glClipPlanex__I_3II()
278 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { in android_glClipPlanex__ILjava_nio_IntBuffer_2() argument
285 (GLenum)plane, in android_glClipPlanex__ILjava_nio_IntBuffer_2()
Dandroid_opengl_GLES11Ext.cpp518 (JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) { in android_glClipPlanexOES__I_3II() argument
537 (GLenum)plane, in android_glClipPlanexOES__I_3II()
551 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { in android_glClipPlanexOES__ILjava_nio_IntBuffer_2() argument
558 (GLenum)plane, in android_glClipPlanexOES__ILjava_nio_IntBuffer_2()
1843 (JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) { in android_glClipPlanefOES__I_3FI() argument
1862 (GLenum)plane, in android_glClipPlanefOES__I_3FI()
1876 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { in android_glClipPlanefOES__ILjava_nio_FloatBuffer_2() argument
1883 (GLenum)plane, in android_glClipPlanefOES__ILjava_nio_FloatBuffer_2()
Dcom_google_android_gles_jni_GLImpl.cpp3643 (JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) { in android_glClipPlanef__I_3FI() argument
3666 (GLenum)plane, in android_glClipPlanef__I_3FI()
3680 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { in android_glClipPlanef__ILjava_nio_FloatBuffer_2() argument
3691 (GLenum)plane, in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
3704 (JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) { in android_glClipPlanex__I_3II() argument
3727 (GLenum)plane, in android_glClipPlanex__I_3II()
3741 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { in android_glClipPlanex__ILjava_nio_IntBuffer_2() argument
3752 (GLenum)plane, in android_glClipPlanex__ILjava_nio_IntBuffer_2()
/frameworks/base/opengl/libs/
Dentries.in36 GL_ENTRY(void, glClipPlanef, GLenum plane, const GLfloat *equation)
37 GL_ENTRY(void, glClipPlanefOES, GLenum plane, const GLfloat *equation)
38 GL_ENTRY(void, glClipPlanex, GLenum plane, const GLfixed *equation)
39 GL_ENTRY(void, glClipPlanexOES, GLenum plane, const GLfixed *equation)
/frameworks/base/include/private/opengles/
Dgl_context.h270 clip_plane_t plane[OGLES_MAX_CLIP_PLANES]; member
/frameworks/base/docs/html/guide/tutorials/views/
Dhello-mapview.jd117 <code>layout_centerHorizontal</code> centers this on the horizontal plane.</p></li>