HomeSort by relevance Sort by last modified time
    Searched refs:equation (Results 1 - 25 of 160) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
clip.h 42 _mesa_ClipPlane( GLenum plane, const GLdouble *equation );
45 _mesa_GetClipPlane( GLenum plane, GLdouble *equation );
clip.c 56 GLfloat equation[4]; local
65 equation[0] = (GLfloat) eq[0];
66 equation[1] = (GLfloat) eq[1];
67 equation[2] = (GLfloat) eq[2];
68 equation[3] = (GLfloat) eq[3];
71 * The equation is transformed by the transpose of the inverse of the
81 _mesa_transform_vector( equation, equation,
84 if (TEST_EQ_4V(ctx->Transform.EyeUserPlane[p], equation))
88 COPY_4FV(ctx->Transform.EyeUserPlane[p], equation);
    [all...]
es1_conversion.h 11 _es_ClipPlanef(GLenum plane, const GLfloat *equation);
14 _es_ClipPlanex(GLenum plane, const GLfixed *equation);
46 _es_GetClipPlanef(GLenum plane, GLfloat *equation);
49 _es_GetClipPlanex(GLenum plane, GLfixed *equation);
es1_conversion.c 60 _es_ClipPlanef(GLenum plane, const GLfloat *equation)
66 converted_equation[i] = (GLdouble) (equation[i]);
73 _es_ClipPlanex(GLenum plane, const GLfixed *equation)
79 converted_equation[i] = (GLdouble) (equation[i] / 65536.0);
210 _es_GetClipPlanef(GLenum plane, GLfloat *equation)
217 equation[i] = (GLfloat) (converted_equation[i]);
222 _es_GetClipPlanex(GLenum plane, GLfixed *equation)
229 equation[i] = (GLfixed) (converted_equation[i] * 65536);
  /external/mesa3d/src/mesa/main/
clip.h 42 _mesa_ClipPlane( GLenum plane, const GLdouble *equation );
45 _mesa_GetClipPlane( GLenum plane, GLdouble *equation );
clip.c 56 GLfloat equation[4]; local
65 equation[0] = (GLfloat) eq[0];
66 equation[1] = (GLfloat) eq[1];
67 equation[2] = (GLfloat) eq[2];
68 equation[3] = (GLfloat) eq[3];
71 * The equation is transformed by the transpose of the inverse of the
81 _mesa_transform_vector( equation, equation,
84 if (TEST_EQ_4V(ctx->Transform.EyeUserPlane[p], equation))
88 COPY_4FV(ctx->Transform.EyeUserPlane[p], equation);
    [all...]
es1_conversion.h 11 _es_ClipPlanef(GLenum plane, const GLfloat *equation);
14 _es_ClipPlanex(GLenum plane, const GLfixed *equation);
46 _es_GetClipPlanef(GLenum plane, GLfloat *equation);
49 _es_GetClipPlanex(GLenum plane, GLfixed *equation);
es1_conversion.c 60 _es_ClipPlanef(GLenum plane, const GLfloat *equation)
66 converted_equation[i] = (GLdouble) (equation[i]);
73 _es_ClipPlanex(GLenum plane, const GLfixed *equation)
79 converted_equation[i] = (GLdouble) (equation[i] / 65536.0);
210 _es_GetClipPlanef(GLenum plane, GLfloat *equation)
217 equation[i] = (GLfloat) (converted_equation[i]);
222 _es_GetClipPlanex(GLenum plane, GLfixed *equation)
229 equation[i] = (GLfixed) (converted_equation[i] * 65536);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
view.js 32 var equation = this.makeElement_('div', 'equation');
33 this.appendChild_(equation, null, 'span', 'accumulator', values.accumulator);
34 this.appendChild_(equation, null, 'span', 'operation');
35 this.appendChild_(equation, '.operation', 'span', 'operator');
36 this.appendChild_(equation, '.operation', 'span', 'operand', values.operand);
37 this.appendChild_(equation, '.operator', 'div', 'spacer');
38 this.appendChild_(equation, '.operator', 'div', 'value', values.operator);
39 this.setAttribute_(equation, '.accumulator', 'aria-hidden', 'true');
40 this.display.appendChild(equation).scrollIntoView()
    [all...]
style.css 239 #calculator-display .equation {
249 #calculator-display .equation * {
255 #calculator-display .equation .accumulator {
261 #calculator-display .equation .operation {
266 #calculator-display .equation .operation .operator .spacer {
272 #calculator-display .equation .operation .operator .value {
284 #calculator-display .hr + .equation {
  /frameworks/native/opengl/libagl/
vertex.cpp 124 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);
primitives.cpp 901 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
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES11.java 179 // 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
GLES11Ext.java 294 // 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,
    [all...]
GLErrorWrapper.java 846 public void glClipPlanef(int plane, float[] equation, int offset) {
848 mgl11.glClipPlanef(plane, equation, offset);
852 public void glClipPlanef(int plane, FloatBuffer equation) {
854 mgl11.glClipPlanef(plane, equation);
858 public void glClipPlanex(int plane, int[] equation, int offset) {
860 mgl11.glClipPlanex(plane, equation, offset);
864 public void glClipPlanex(int plane, IntBuffer equation) {
866 mgl11.glClipPlanex(plane, equation);
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL11.java 168 float[] equation,
174 java.nio.FloatBuffer equation
179 int[] equation,
185 java.nio.IntBuffer equation
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES11.spec 4 void glClipPlanef ( GLenum plane, const GLfloat *equation )
5 void glClipPlanex ( GLenum plane, const GLfixed *equation )
GLES11Ext.spec 17 void glClipPlanexOES ( GLenum plane, const GLfixed *equation )
79 void glClipPlanefOES ( GLenum plane, const GLfloat *equation )
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_validation_autogen.h 23 ValueValidator<GLenum> equation; variable
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 673 public void glClipPlanef(int plane, float[] equation, int offset) {
674 mgl11.glClipPlanef(plane, equation, offset);
677 public void glClipPlanef(int plane, FloatBuffer equation) {
678 mgl11.glClipPlanef(plane, equation);
681 public void glClipPlanex(int plane, int[] equation, int offset) {
682 mgl11.glClipPlanex(plane, equation, offset);
685 public void glClipPlanex(int plane, IntBuffer equation) {
686 mgl11.glClipPlanex(plane, equation);
  /frameworks/base/core/jni/
android_opengl_GLES11.cpp 417 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
426 GLfloat *equation = (GLfloat *) 0; local
431 _exceptionMessage = "equation == null";
443 equation = equation_base + offset;
447 (GLfloat *)equation
460 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
470 GLfloat *equation = (GLfloat *) 0; local
472 equation = (GLfloat *)getPointer(_env, equation_buf, &_array, &_remaining, &_bufferOffset);
473 if (equation == NULL) {
475 equation = (GLfloat *) (_equationBase + _bufferOffset)
498 GLfixed *equation = (GLfixed *) 0; local
542 GLfixed *equation = (GLfixed *) 0; local
    [all...]
android_opengl_GLES11Ext.cpp 823 /* void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) */
832 GLfixed *equation = (GLfixed *) 0; local
837 _exceptionMessage = "equation == null";
849 equation = equation_base + offset;
853 (GLfixed *)equation
866 /* void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) */
873 GLfixed *equation = (GLfixed *) 0; local
875 equation = (GLfixed *)getPointer(_env, equation_buf, &_array, &_remaining, &_bufferOffset);
876 if (equation == NULL) {
878 equation = (GLfixed *) (_equationBase + _bufferOffset)
2863 GLfloat *equation = (GLfloat *) 0; local
2904 GLfloat *equation = (GLfloat *) 0; local
    [all...]
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
gles.cpp 71 void glClipPlanef(GLenum plane, const GLfloat *equation)
73 getDispatch()->glClipPlanef(plane, equation);
306 void glClipPlanex(GLenum plane, const GLfixed *equation)
308 getDispatch()->glClipPlanex(plane, equation);
861 void glClipPlanexOES(GLenum plane, const GLfixed *equation)
863 getDispatch()->glClipPlanexOES(plane, equation);
1171 void glClipPlanefOES(GLenum plane, const GLfloat *equation)
1173 getDispatch()->glClipPlanefOES(plane, equation);
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.h 47 void (GLAPIENTRY *glClipPlane) (GLenum plane, const GLdouble *equation);
82 void (GLAPIENTRY *glGetClipPlane) (GLenum plane, GLdouble *equation);
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 1191 // 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
    [all...]

Completed in 407 milliseconds

1 2 3 4 5 6 7