/frameworks/base/opengl/libagl/ |
H A D | vertex.cpp | 117 // clip this vertex against each user clip plane 124 GLfixed d = dot4(c->clipPlanes.plane[i].equation.v, v->eye.v); 164 static void clipPlanex(GLenum plane, const GLfixed* equ, ogles_context_t* c) argument 166 const int p = plane - GL_CLIP_PLANE0; 172 vec4_t& equation = c->clipPlanes.plane[p].equation; 231 void glClipPlanef(GLenum plane, const GLfloat* equ) argument 240 clipPlanex(plane, equx, c); 243 void glClipPlanex(GLenum plane, const GLfixed* equ) argument 246 clipPlanex(plane, equ, c);
|
H A D | primitives.cpp | 838 GLfixed frustumPlaneDist(int plane, const vec4_t& s) argument 840 const GLfixed d = s.v[ plane >> 1 ]; 841 return ((plane & 1) ? (s.w - d) : (s.w + d)); 859 // Temporary buffer to hold the new vertices. Each plane can add up to 879 // 3 input vertices, 0 in the output list, first plane 884 // clipping, except for the computation of the distance (vertex, plane) 890 unsigned int plane = 0; local 899 // previous vertex, compute distance to the plane 901 const vec4_t& equation = c->clipPlanes.plane[plane] 956 unsigned int plane = 0; local 1039 unsigned int plane = 0; local 1075 unsigned int plane = 0; local [all...] |
/frameworks/base/opengl/java/android/opengl/ |
H A D | GLES11.java | 179 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation ) 182 int plane, 187 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation ) 190 int plane, 194 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation ) 197 int plane, 202 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation ) 205 int plane, 181 glClipPlanef( int plane, float[] equation, int offset ) argument 189 glClipPlanef( int plane, java.nio.FloatBuffer equation ) argument 196 glClipPlanex( int plane, int[] equation, int offset ) argument 204 glClipPlanex( int plane, java.nio.IntBuffer equation ) argument
|
H A D | GLES11Ext.java | 290 // C function void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) 293 int plane, 298 // C function void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) 301 int plane, 964 // C function void glClipPlanefOES ( GLenum plane, const GLfloat *equation ) 967 int plane, 972 // C function void glClipPlanefOES ( GLenum plane, const GLfloat *equation ) 975 int plane, 292 glClipPlanexOES( int plane, int[] equation, int offset ) argument 300 glClipPlanexOES( int plane, java.nio.IntBuffer equation ) argument 966 glClipPlanefOES( int plane, float[] equation, int offset ) argument 974 glClipPlanefOES( int plane, java.nio.FloatBuffer equation ) argument
|
H A D | GLErrorWrapper.java | 846 public void glClipPlanef(int plane, float[] equation, int offset) { argument 848 mgl11.glClipPlanef(plane, equation, offset); 852 public void glClipPlanef(int plane, FloatBuffer equation) { argument 854 mgl11.glClipPlanef(plane, equation); 858 public void glClipPlanex(int plane, int[] equation, int offset) { argument 860 mgl11.glClipPlanex(plane, equation, offset); 864 public void glClipPlanex(int plane, IntBuffer equation) { argument 866 mgl11.glClipPlanex(plane, equation);
|
H A D | GLLogWrapper.java | 2586 public void glClipPlanef(int plane, float[] equation, int offset) { argument 2588 arg("plane", plane); 2592 mgl11.glClipPlanef(plane, equation, offset); 2596 public void glClipPlanef(int plane, FloatBuffer equation) { argument 2598 arg("plane", plane); 2601 mgl11.glClipPlanef(plane, equation); 2605 public void glClipPlanex(int plane, int[] equation, int offset) { argument 2607 arg("plane", plan 2615 glClipPlanex(int plane, IntBuffer equation) argument [all...] |
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/ |
H A D | GL11.java | 167 int plane, 173 int plane, 178 int plane, 184 int plane, 166 glClipPlanef( int plane, float[] equation, int offset ) argument 172 glClipPlanef( int plane, java.nio.FloatBuffer equation ) argument 177 glClipPlanex( int plane, int[] equation, int offset ) argument 183 glClipPlanex( int plane, java.nio.IntBuffer equation ) argument
|
/frameworks/base/opengl/tools/glgen/specs/gles11/ |
H A D | GLES11.spec | 4 void glClipPlanef ( GLenum plane, const GLfloat *equation ) 5 void glClipPlanex ( GLenum plane, const GLfixed *equation )
|
H A D | GLES11Ext.spec | 17 void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) 79 void glClipPlanefOES ( GLenum plane, const GLfloat *equation )
|
/frameworks/base/services/surfaceflinger/ |
H A D | SurfaceFlinger.cpp | 159 const GraphicPlane& plane(mGraphicPlanes[dpy]); 160 return plane; 200 GraphicPlane& plane(graphicPlane(dpy)); 202 plane.setDisplayHardware(hw); 219 const GraphicPlane& plane(graphicPlane(dpy)); 220 const DisplayHardware& hw = plane.displayHardware(); 230 dcblk->w = plane.getWidth(); 231 dcblk->h = plane.getHeight(); 527 GraphicPlane& plane(graphicPlane(dpy)); 528 plane [all...] |
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
H A D | GLImpl.java | 1190 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation ) 1193 int plane, 1198 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation ) 1201 int plane, 1205 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation ) 1208 int plane, 1213 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation ) 1216 int plane, 1192 glClipPlanef( int plane, float[] equation, int offset ) argument 1200 glClipPlanef( int plane, java.nio.FloatBuffer equation ) argument 1207 glClipPlanex( int plane, int[] equation, int offset ) argument 1215 glClipPlanex( int plane, java.nio.IntBuffer equation ) argument
|
/frameworks/base/core/jni/ |
H A D | android_opengl_GLES11.cpp | 211 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */ 214 (JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) { 233 (GLenum)plane, 244 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */ 247 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { 254 (GLenum)plane, 262 /* void glClipPlanex ( GLenum plane, const GLfixed *equation ) */ 265 (JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) { 284 (GLenum)plane, 295 /* void glClipPlanex ( GLenum plane, cons 213 android_glClipPlanef__I_3FI(JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) argument 246 android_glClipPlanef__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) argument 264 android_glClipPlanex__I_3II(JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) argument 297 android_glClipPlanex__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) argument [all...] |
H A D | android_opengl_GLES11Ext.cpp | 536 /* void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) */ 539 (JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) { 558 (GLenum)plane, 569 /* void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) */ 572 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { 579 (GLenum)plane, 1891 /* void glClipPlanefOES ( GLenum plane, const GLfloat *equation ) */ 1894 (JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) { 1913 (GLenum)plane, 1924 /* void glClipPlanefOES ( GLenum plane, cons 538 android_glClipPlanexOES__I_3II(JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) argument 571 android_glClipPlanexOES__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) argument 1893 android_glClipPlanefOES__I_3FI(JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) argument 1926 android_glClipPlanefOES__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) argument [all...] |
H A D | com_google_android_gles_jni_GLImpl.cpp | 3731 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */ 3734 (JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) { 3757 (GLenum)plane, 3768 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */ 3771 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { 3782 (GLenum)plane, 3792 /* void glClipPlanex ( GLenum plane, const GLfixed *equation ) */ 3795 (JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) { 3818 (GLenum)plane, 3829 /* void glClipPlanex ( GLenum plane, cons 3733 android_glClipPlanef__I_3FI(JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) argument 3770 android_glClipPlanef__ILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) argument 3794 android_glClipPlanex__I_3II(JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) argument 3831 android_glClipPlanex__ILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) argument [all...] |
/frameworks/base/opengl/include/GLES/ |
H A D | glext.h | 532 GL_API void GL_APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation); 572 typedef void (GL_APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation); 706 GL_API void GL_APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation); 713 typedef void (GL_APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation);
|
H A D | gl.h | 596 GL_API void GL_APIENTRY glClipPlanef (GLenum plane, const GLfloat *equation); 645 GL_API void GL_APIENTRY glClipPlanex (GLenum plane, const GLfixed *equation);
|
/frameworks/base/include/private/opengles/ |
H A D | gl_context.h | 275 clip_plane_t plane[OGLES_MAX_CLIP_PLANES]; member in struct:android::gl::user_clip_planes_t
|