Home
last modified time | relevance | path

Searched refs:equation (Results 1 – 25 of 25) sorted by relevance

/frameworks/native/opengl/libagl/
Dvertex.cpp124 GLfixed d = dot4(c->clipPlanes.plane[i].equation.v, v->eye.v); in clipAllPerspective()
172 vec4_t& equation = c->clipPlanes.plane[p].equation; in clipPlanex() local
173 memcpy(equation.v, equ, sizeof(vec4_t)); in clipPlanex()
177 mvit.point4(&mvit, &equation, &equation); in clipPlanex()
Dprimitives.cpp902 const vec4_t& equation = c->clipPlanes.plane[plane].equation; in clip_triangle() local
903 GLfixed sd = dot4(equation.v, s->eye.v); in clip_triangle()
907 const GLfixed pd = dot4(equation.v, p->eye.v); in clip_triangle()
1044 const vec4_t& equation = c->clipPlanes.plane[plane].equation; in clip_line() local
1045 const GLfixed sd = dot4(equation.v, s->eye.v); in clip_line()
1046 const GLfixed pd = dot4(equation.v, p->eye.v); in clip_line()
Dcontext.h273 vec4_t equation; member
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
DGL11.java168 float[] equation, in glClipPlanef() argument
174 java.nio.FloatBuffer equation in glClipPlanef() argument
179 int[] equation, in glClipPlanex() argument
185 java.nio.IntBuffer equation in glClipPlanex() argument
/frameworks/base/opengl/java/android/opengl/
DGLES11.java183 float[] equation, in glClipPlanef() argument
191 java.nio.FloatBuffer equation in glClipPlanef() argument
198 int[] equation, in glClipPlanex() argument
206 java.nio.IntBuffer equation in glClipPlanex() argument
DGLES11Ext.java298 int[] equation, in glClipPlanexOES() argument
306 java.nio.IntBuffer equation in glClipPlanexOES() argument
972 float[] equation, in glClipPlanefOES() argument
980 java.nio.FloatBuffer equation 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
2589 arg("equation", 4, equation, offset); in glClipPlanef()
2592 mgl11.glClipPlanef(plane, equation, offset); in glClipPlanef()
2596 public void glClipPlanef(int plane, FloatBuffer equation) { in glClipPlanef() argument
2599 arg("equation", 4, equation); in glClipPlanef()
2601 mgl11.glClipPlanef(plane, equation); in glClipPlanef()
2605 public void glClipPlanex(int plane, int[] equation, int offset) { in glClipPlanex() argument
2608 arg("equation", 4, equation, offset); in glClipPlanex()
2611 mgl11.glClipPlanex(plane, equation, offset); in glClipPlanex()
2615 public void glClipPlanex(int plane, IntBuffer equation) { in glClipPlanex() argument
[all …]
/frameworks/native/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/native/opengl/tools/glgen/specs/jsr239/
Dglspec-1.14 void glClipPlanef ( GLenum plane, const GLfloat *equation )
5 void glClipPlanex ( GLenum plane, const GLfixed *equation )
Dglspec-checks1 glClipPlanef check equation 4
2 glClipPlanex check equation 4
/frameworks/native/opengl/libs/GLES_CM/
Dglext_api.in49 void API_ENTRY(glClipPlanexOES)(GLenum plane, const GLfixed *equation) {
50 CALL_GL_API(glClipPlanexOES, plane, equation);
67 void API_ENTRY(glGetClipPlanexOES)(GLenum plane, GLfixed *equation) {
68 CALL_GL_API(glGetClipPlanexOES, plane, equation);
241 void API_ENTRY(glClipPlanefOES)(GLenum plane, const GLfloat *equation) {
242 CALL_GL_API(glClipPlanefOES, plane, equation);
250 void API_ENTRY(glGetClipPlanefOES)(GLenum plane, GLfloat *equation) {
251 CALL_GL_API(glGetClipPlanefOES, plane, equation);
Dgl_api.in28 void API_ENTRY(glGetClipPlanef)(GLenum plane, GLfloat *equation) {
29 CALL_GL_API(glGetClipPlanef, plane, equation);
151 void API_ENTRY(glClipPlanex)(GLenum plane, const GLfixed *equation) {
152 CALL_GL_API(glClipPlanex, plane, equation);
238 void API_ENTRY(glGetClipPlanex)(GLenum plane, GLfixed *equation) {
239 CALL_GL_API(glGetClipPlanex, plane, equation);
/frameworks/base/core/jni/
Dandroid_opengl_GLES11.cpp528 GLfloat *equation = (GLfloat *) 0; in android_glClipPlanef__I_3FI() local
545 equation = equation_base + offset; in android_glClipPlanef__I_3FI()
549 (GLfloat *)equation in android_glClipPlanef__I_3FI()
572 GLfloat *equation = (GLfloat *) 0; in android_glClipPlanef__ILjava_nio_FloatBuffer_2() local
580equation = (GLfloat *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset… in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
581 if (equation == NULL) { in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
583 equation = (GLfloat *) (_equationBase + _bufferOffset); in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
587 (GLfloat *)equation in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
592 _env->ReleaseFloatArrayElements(_array, (jfloat*)equation, JNI_ABORT); in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
608 GLfixed *equation = (GLfixed *) 0; in android_glClipPlanex__I_3II() local
[all …]
Dandroid_opengl_GLES11Ext.cpp980 GLfixed *equation = (GLfixed *) 0; in android_glClipPlanexOES__I_3II() local
997 equation = equation_base + offset; in android_glClipPlanexOES__I_3II()
1001 (GLfixed *)equation in android_glClipPlanexOES__I_3II()
1024 GLfixed *equation = (GLfixed *) 0; in android_glClipPlanexOES__ILjava_nio_IntBuffer_2() local
1032equation = (GLfixed *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset… in android_glClipPlanexOES__ILjava_nio_IntBuffer_2()
1033 if (equation == NULL) { in android_glClipPlanexOES__ILjava_nio_IntBuffer_2()
1035 equation = (GLfixed *) (_equationBase + _bufferOffset); in android_glClipPlanexOES__ILjava_nio_IntBuffer_2()
1039 (GLfixed *)equation in android_glClipPlanexOES__ILjava_nio_IntBuffer_2()
1044 _env->ReleaseIntArrayElements(_array, (jint*)equation, JNI_ABORT); in android_glClipPlanexOES__ILjava_nio_IntBuffer_2()
3275 GLfloat *equation = (GLfloat *) 0; in android_glClipPlanefOES__I_3FI() local
[all …]
Dcom_google_android_gles_jni_GLImpl.cpp4363 GLfloat *equation = (GLfloat *) 0; in android_glClipPlanef__I_3FI() local
4386 equation = equation_base + offset; in android_glClipPlanef__I_3FI()
4390 (GLfloat *)equation in android_glClipPlanef__I_3FI()
4413 GLfloat *equation = (GLfloat *) 0; in android_glClipPlanef__ILjava_nio_FloatBuffer_2() local
4421equation = (GLfloat *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset… in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
4428 if (equation == NULL) { in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
4430 equation = (GLfloat *) (_equationBase + _bufferOffset); in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
4434 (GLfloat *)equation in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
4439 _env->ReleaseFloatArrayElements(_array, (jfloat*)equation, JNI_ABORT); in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
4455 GLfixed *equation = (GLfixed *) 0; in android_glClipPlanex__I_3II() local
[all …]
/frameworks/native/opengl/include/GLES/
Dglext.h170 typedef void (GL_APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation);
176 typedef void (GL_APIENTRYP PFNGLGETCLIPPLANEXOESPROC) (GLenum plane, GLfixed *equation);
213 GL_API void GL_APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation);
219 GL_API void GL_APIENTRY glGetClipPlanexOES (GLenum plane, GLfixed *equation);
411 typedef void (GL_APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation);
414 typedef void (GL_APIENTRYP PFNGLGETCLIPPLANEFOESPROC) (GLenum plane, GLfloat *equation);
418 GL_API void GL_APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation);
421 GL_API void GL_APIENTRY glGetClipPlanefOES (GLenum plane, GLfloat *equation);
Dgl.h414 GL_API void GL_APIENTRY glGetClipPlanef (GLenum plane, GLfloat *equation);
455 GL_API void GL_APIENTRY glClipPlanex (GLenum plane, const GLfixed *equation);
484 GL_API void GL_APIENTRY glGetClipPlanex (GLenum plane, GLfixed *equation);
/frameworks/native/opengl/libs/
Dentries_gles1.in30 GL_ENTRY(void, glClipPlanefOES, GLenum plane, const GLfloat *equation)
31 GL_ENTRY(void, glClipPlanex, GLenum plane, const GLfixed *equation)
33 GL_ENTRY(void, glClipPlanexOES, GLenum plane, const GLfixed *equation)
122 GL_ENTRY(void, glGetClipPlanef, GLenum plane, GLfloat *equation)
123 GL_ENTRY(void, glGetClipPlanefOES, GLenum plane, GLfloat *equation)
124 GL_ENTRY(void, glGetClipPlanex, GLenum plane, GLfixed *equation)
125 GL_ENTRY(void, glGetClipPlanexOES, GLenum plane, GLfixed *equation)
Dentries.in91 GL_ENTRY(void, glClipPlanefOES, GLenum plane, const GLfloat *equation)
92 GL_ENTRY(void, glClipPlanex, GLenum plane, const GLfixed *equation)
94 GL_ENTRY(void, glClipPlanexOES, GLenum plane, const GLfixed *equation)
336 GL_ENTRY(void, glGetClipPlanef, GLenum plane, GLfloat *equation)
337 GL_ENTRY(void, glGetClipPlanefOES, GLenum plane, GLfloat *equation)
338 GL_ENTRY(void, glGetClipPlanex, GLenum plane, GLfixed *equation)
339 GL_ENTRY(void, glGetClipPlanexOES, GLenum plane, GLfixed *equation)
/frameworks/base/opengl/java/com/google/android/gles_jni/
DGLImpl.java1198 float[] equation, in glClipPlanef() argument
1206 java.nio.FloatBuffer equation in glClipPlanef() argument
1213 int[] equation, in glClipPlanex() argument
1221 java.nio.IntBuffer equation in glClipPlanex() argument
/frameworks/rs/script_api/
Drs_matrix.spec62 // x y z w = a b c d in the plane equation
/frameworks/rs/script_api/include/
Drs_matrix.rsh71 // x y z w = a b c d in the plane equation
/frameworks/ml/nn/tools/api/
Dtypes.spec1496 * (\f$i_t\f$) is calculated using the following equation instead.