Searched defs:equation (Results 1 - 13 of 13) sorted by relevance

/frameworks/native/opengl/libagl/
H A Dvertex.cpp124 GLfixed d = dot4(c->clipPlanes.plane[i].equation.v, v->eye.v);
172 vec4_t& equation = c->clipPlanes.plane[p].equation; local
173 memcpy(equation.v, equ, sizeof(vec4_t));
177 mvit.point4(&mvit, &equation, &equation);
H A Dprimitives.cpp901 const vec4_t& equation = c->clipPlanes.plane[plane].equation; local
902 GLfixed sd = dot4(equation.v, s->eye.v);
906 const GLfixed pd = dot4(equation.v, p->eye.v);
1043 const vec4_t& equation = c->clipPlanes.plane[plane].equation; local
1044 const GLfixed sd = dot4(equation.v, s->eye.v);
1045 const GLfixed pd = dot4(equation.v, p->eye.v);
H A Dcontext.h272 vec4_t equation; member in struct:android::gl::clip_plane_t
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES11.cpp535 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
544 GLfloat *equation = (GLfloat *) 0; local
549 _exceptionMessage = "equation == null";
561 equation = equation_base + offset;
565 (GLfloat *)equation
578 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
588 GLfloat *equation = (GLfloat *) 0; local
590 equation = (GLfloat *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset);
591 if (equation == NULL) {
593 equation
616 GLfixed *equation = (GLfixed *) 0; local
660 GLfixed *equation = (GLfixed *) 0; local
[all...]
H A Dandroid_opengl_GLES11Ext.cpp941 /* void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) */
950 GLfixed *equation = (GLfixed *) 0; local
955 _exceptionMessage = "equation == null";
967 equation = equation_base + offset;
971 (GLfixed *)equation
984 /* void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) */
991 GLfixed *equation = (GLfixed *) 0; local
993 equation = (GLfixed *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset);
994 if (equation == NULL) {
996 equation
2981 GLfloat *equation = (GLfloat *) 0; local
3022 GLfloat *equation = (GLfloat *) 0; local
[all...]
H A Dcom_google_android_gles_jni_GLImpl.cpp4174 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
4183 GLfloat *equation = (GLfloat *) 0; local
4188 _exceptionMessage = "equation == null";
4206 equation = equation_base + offset;
4210 (GLfloat *)equation
4223 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
4233 GLfloat *equation = (GLfloat *) 0; local
4235 equation = (GLfloat *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset);
4242 if (equation == NULL) {
4244 equation
4269 GLfixed *equation = (GLfixed *) 0; local
4319 GLfixed *equation = (GLfixed *) 0; local
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES11.java179 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation )
183 float[] equation,
187 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation )
191 java.nio.FloatBuffer equation
194 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation )
198 int[] equation,
202 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation )
206 java.nio.IntBuffer equation
181 glClipPlanef( int plane, float[] equation, int offset ) argument
196 glClipPlanex( int plane, int[] equation, int offset ) argument
H A DGLES11Ext.java294 // C function void glClipPlanexOES ( GLenum plane, const GLfixed *equation )
298 int[] equation,
302 // C function void glClipPlanexOES ( GLenum plane, const GLfixed *equation )
306 java.nio.IntBuffer equation
968 // C function void glClipPlanefOES ( GLenum plane, const GLfloat *equation )
972 float[] equation,
976 // C function void glClipPlanefOES ( GLenum plane, const GLfloat *equation )
980 java.nio.FloatBuffer equation
296 glClipPlanexOES( int plane, int[] equation, int offset ) argument
970 glClipPlanefOES( int plane, float[] equation, int offset ) argument
H A DGLErrorWrapper.java846 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 DGLLogWrapper.java2586 public void glClipPlanef(int plane, float[] equation, int offset) { argument
2589 arg("equation", 4, equation, offset);
2592 mgl11.glClipPlanef(plane, equation, offset);
2596 public void glClipPlanef(int plane, FloatBuffer equation) { argument
2599 arg("equation", 4, equation);
2601 mgl11.glClipPlanef(plane, equation);
2605 public void glClipPlanex(int plane, int[] equation, int offset) { argument
2608 arg("equation",
2615 glClipPlanex(int plane, IntBuffer equation) argument
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11.java168 float[] equation,
174 java.nio.FloatBuffer equation
179 int[] equation,
185 java.nio.IntBuffer equation
166 glClipPlanef( int plane, float[] equation, int offset ) argument
177 glClipPlanex( int plane, int[] equation, int offset ) argument
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java1191 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation )
1195 float[] equation,
1199 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation )
1203 java.nio.FloatBuffer equation
1206 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation )
1210 int[] equation,
1214 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation )
1218 java.nio.IntBuffer equation
1193 glClipPlanef( int plane, float[] equation, int offset ) argument
1208 glClipPlanex( int plane, int[] equation, int offset ) argument
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp23710 void GLTrace_glGetClipPlanef(GLenum plane, GLfloat * equation) { argument
23722 // copy argument equation
23726 arg_equation->add_int64value((uintptr_t)equation);
23731 glContext->hooks->gl.glGetClipPlanef(plane, equation);
23736 (void *) equation,
24747 void GLTrace_glClipPlanex(GLenum plane, const GLfixed * equation) { argument
24759 // copy argument equation
24763 arg_equation->add_int64value((uintptr_t)equation);
24768 glContext->hooks->gl.glClipPlanex(plane, equation);
24773 (void *) equation,
25138 GLTrace_glGetClipPlanex(GLenum plane, GLfixed * equation) argument
28042 GLTrace_glClipPlanexOES(GLenum plane, const GLfixed * equation) argument
28284 GLTrace_glGetClipPlanexOES(GLenum plane, GLfixed * equation) argument
30427 GLTrace_glClipPlanefOES(GLenum plane, const GLfloat * equation) argument
30554 GLTrace_glGetClipPlanefOES(GLenum plane, GLfloat * equation) argument
[all...]

Completed in 3005 milliseconds