Home
last modified time | relevance | path

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

12

/frameworks/native/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/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
DTestAppRS.java88 Renderable plane = (Renderable)mActiveScene.getRenderableByName("pPlaneShape1"); in toggleBlur() local
89 if (plane != null) { in toggleBlur()
90 plane.setVisible(!mUseBlur); in toggleBlur()
257 Renderable plane = (Renderable)mActiveScene.getRenderableByName("pPlaneShape1"); in prepareToRender() local
258 if (plane != null) { in prepareToRender()
259 plane.setRenderState(texState); in prepareToRender()
260 plane.setVisible(!mUseBlur); in prepareToRender()
/frameworks/base/tests/Camera2Tests/CameraToo/tests/src/com/example/android/camera2/cameratoo/
DCameraTooTest.java154 Image.Plane plane = mock(Image.Plane.class); in capturedImageSaver() local
155 when(plane.getBuffer()).thenReturn(buf); in capturedImageSaver()
156 when(plane.getPixelStride()).thenReturn(1); in capturedImageSaver()
157 when(plane.getRowStride()).thenReturn(5); in capturedImageSaver()
159 Image.Plane[] onlyPlaneThatMatters = { plane }; in capturedImageSaver()
/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/rs/scriptc/
Drs_matrix.rsh60 * left: Left plane.
61 * right: Right plane.
62 * top: Top plane.
63 * bottom: Bottom plane.
64 * near: Near plane.
65 * far: Far plane.
70 // x y z w = a b c d in the plane equation
122 * left: Left plane.
123 * right: Right plane.
124 * top: Top plane.
[all …]
/frameworks/base/opengl/java/android/opengl/
DGLES11.java182 int plane, in glClipPlanef() argument
190 int plane, in glClipPlanef() argument
197 int plane, in glClipPlanex() argument
205 int plane, in glClipPlanex() argument
DGLES11Ext.java297 int plane, in glClipPlanexOES() argument
305 int plane, in glClipPlanexOES() argument
971 int plane, in glClipPlanefOES() argument
979 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/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/base/core/tests/coretests/src/android/hardware/display/
DVirtualDisplayTest.java435 final Image.Plane plane = image.getPlanes()[0]; in scanImage() local
436 final ByteBuffer buffer = plane.getBuffer(); in scanImage()
439 final int pixelStride = plane.getPixelStride(); in scanImage()
440 final int rowStride = plane.getRowStride(); in scanImage()
/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 )
/frameworks/native/opengl/libs/GLES_CM/
Dglext_api.in115 void API_ENTRY(glClipPlanexOES)(GLenum plane, const GLfixed * equation) {
116 CALL_GL_API(glClipPlanexOES, plane, equation);
133 void API_ENTRY(glGetClipPlanexOES)(GLenum plane, GLfixed * equation) {
134 CALL_GL_API(glGetClipPlanexOES, plane, equation);
310 void API_ENTRY(glClipPlanefOES)(GLenum plane, const GLfloat * equation) {
311 CALL_GL_API(glClipPlanefOES, plane, equation);
319 void API_ENTRY(glGetClipPlanefOES)(GLenum plane, GLfloat * equation) {
320 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/av/media/img_utils/include/img_utils/
DDngUtils.h98 uint32_t plane,
/frameworks/av/media/img_utils/src/
DDngUtils.cpp214 uint32_t plane, in addGainMap() argument
256 plane, in addGainMap()
/frameworks/base/opengl/java/com/google/android/gles_jni/
DGLImpl.java1194 int plane, in glClipPlanef() argument
1202 int plane, in glClipPlanef() argument
1209 int plane, in glClipPlanex() argument
1217 int plane, in glClipPlanex() argument
/frameworks/base/docs/html/guide/topics/renderscript/reference/
Drs_matrix.jd219 <tr><th>left</th><td>Left plane.</td></tr>
220 <tr><th>right</th><td>Right plane.</td></tr>
221 <tr><th>top</th><td>Top plane.</td></tr>
222 <tr><th>bottom</th><td>Bottom plane.</td></tr>
223 <tr><th>near</th><td>Near plane.</td></tr>
224 <tr><th>far</th><td>Far plane.</td></tr>
251 <tr><th>left</th><td>Left plane.</td></tr>
252 <tr><th>right</th><td>Right plane.</td></tr>
253 <tr><th>top</th><td>Top plane.</td></tr>
254 <tr><th>bottom</th><td>Bottom plane.</td></tr>
[all …]
/frameworks/base/core/jni/
Dandroid_opengl_GLES11.cpp538 (JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) { in android_glClipPlanef__I_3FI() argument
564 (GLenum)plane, in android_glClipPlanef__I_3FI()
581 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { in android_glClipPlanef__ILjava_nio_FloatBuffer_2() argument
596 (GLenum)plane, in android_glClipPlanef__ILjava_nio_FloatBuffer_2()
610 (JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) { in android_glClipPlanex__I_3II() argument
636 (GLenum)plane, in android_glClipPlanex__I_3II()
653 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { in android_glClipPlanex__ILjava_nio_IntBuffer_2() argument
668 (GLenum)plane, in android_glClipPlanex__ILjava_nio_IntBuffer_2()
Dandroid_opengl_GLES11Ext.cpp944 (JNIEnv *_env, jobject _this, jint plane, jintArray equation_ref, jint offset) { in android_glClipPlanexOES__I_3II() argument
970 (GLenum)plane, in android_glClipPlanexOES__I_3II()
987 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { in android_glClipPlanexOES__ILjava_nio_IntBuffer_2() argument
999 (GLenum)plane, in android_glClipPlanexOES__ILjava_nio_IntBuffer_2()
2975 (JNIEnv *_env, jobject _this, jint plane, jfloatArray equation_ref, jint offset) { in android_glClipPlanefOES__I_3FI() argument
3001 (GLenum)plane, in android_glClipPlanefOES__I_3FI()
3018 (JNIEnv *_env, jobject _this, jint plane, jobject equation_buf) { in android_glClipPlanefOES__ILjava_nio_FloatBuffer_2() argument
3030 (GLenum)plane, in android_glClipPlanefOES__ILjava_nio_FloatBuffer_2()
/frameworks/native/opengl/libs/
Dtrace.in71 TRACE_GL_VOID(glClipPlanefOES, (GLenum plane, const GLfloat * equation), (plane, equation), 2, "GLe…
72 TRACE_GL_VOID(glClipPlanex, (GLenum plane, const GLfixed * equation), (plane, equation), 2, "GLenum…
74 TRACE_GL_VOID(glClipPlanexOES, (GLenum plane, const GLfixed * equation), (plane, equation), 2, "GLe…
254 TRACE_GL_VOID(glGetClipPlanef, (GLenum plane, GLfloat * equation), (plane, equation), 2, "GLenum",
255 TRACE_GL_VOID(glGetClipPlanefOES, (GLenum plane, GLfloat * equation), (plane, equation), 2, "GLenum…
256 TRACE_GL_VOID(glGetClipPlanex, (GLenum plane, GLfixed * equation), (plane, equation), 2, "GLenum",
257 TRACE_GL_VOID(glGetClipPlanexOES, (GLenum plane, GLfixed * equation), (plane, equation), 2, "GLenum…
/frameworks/native/opengl/include/GLES/
Dglext.h670 GL_API void GL_APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation);
710 typedef void (GL_APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation);
849 GL_API void GL_APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation);
856 typedef void (GL_APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation);
/frameworks/native/opengl/libs/GLES_trace/src/
Dgltrace_api.h571 void GLTrace_glGetClipPlanef(GLenum plane, GLfloat * equation);
598 void GLTrace_glClipPlanex(GLenum plane, const GLfixed * equation);
608 void GLTrace_glGetClipPlanex(GLenum plane, GLfixed * equation);
690 void GLTrace_glClipPlanexOES(GLenum plane, const GLfixed * equation);
696 void GLTrace_glGetClipPlanexOES(GLenum plane, GLfixed * equation);
752 void GLTrace_glClipPlanefOES(GLenum plane, const GLfloat * equation);
755 void GLTrace_glGetClipPlanefOES(GLenum plane, GLfloat * equation);

12