HomeSort by: relevance | last modified time | path
    Searched refs:z0 (Results 1 - 25 of 139) sorted by relevancy

1 2 3 4 5 6

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
sp_quad_depth_test_tmp.h 60 const float z0 = quads[0]->posCoef->a0[2] + dzdx * fx + dzdy * fy; local
67 init_idepth[0] = (ushort)((z0) * scale);
68 init_idepth[1] = (ushort)((z0 + dzdx) * scale);
69 init_idepth[2] = (ushort)((z0 + dzdy) * scale);
70 init_idepth[3] = (ushort)((z0 + dzdx + dzdy) * scale);
sp_quad_depth_test.c 140 const float z0 = quad->posCoef->a0[2] + dzdx * fx + dzdy * fy; local
142 quad->output.depth[0] = z0;
143 quad->output.depth[1] = z0 + dzdx;
144 quad->output.depth[2] = z0 + dzdy;
145 quad->output.depth[3] = z0 + dzdx + dzdy;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
sp_quad_depth_test_tmp.h 60 const float z0 = quads[0]->posCoef->a0[2] + dzdx * fx + dzdy * fy; local
67 init_idepth[0] = (ushort)((z0) * scale);
68 init_idepth[1] = (ushort)((z0 + dzdx) * scale);
69 init_idepth[2] = (ushort)((z0 + dzdy) * scale);
70 init_idepth[3] = (ushort)((z0 + dzdx + dzdy) * scale);
  /xsrc/external/mit/libxcb/dist/tools/
api_conv.pl 51 die "invalid constant name: \"$_\"" unless /^XCB[A-Za-z0-9_]*$/;
62 return "xcb_generate_id" if /^xcb_[a-z0-9_]+_new$/ or /^XCB[A-Z0-9]+New$/;
66 return $_ if /^[A-Z0-9]*_[A-Z0-9_]*$/ or !/^XCB(.+)/;
81 $word = qr/[A-Z](?:[A-Z0-9]*|[a-z]*)/;
98 s/([_A-Za-z][_A-Za-z0-9]*)([ \t]*\()?/convert($1, defined $2) . ($2 or "")/eg;
  /xsrc/external/mit/MesaLib/dist/src/mesa/program/
prog_noise.c 341 float Z0 = k - t;
344 float z0 = z - Z0; local
357 if (y0 >= z0) {
365 else if (x0 >= z0) {
383 if (y0 < z0) {
391 else if (x0 < z0) {
417 z1 = z0 - k1 + G3;
420 z2 = z0 - k2 + 2.0f * G3;
423 z3 = z0 - 1.0f + 3.0f * G3
505 float z0 = z - Z0; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
prog_noise.c 341 float Z0 = k - t;
344 float z0 = z - Z0; local
357 if (y0 >= z0) {
365 else if (x0 >= z0) {
383 if (y0 < z0) {
391 else if (x0 < z0) {
417 z1 = z0 - k1 + G3;
420 z2 = z0 - k2 + 2.0f * G3;
423 z3 = z0 - 1.0f + 3.0f * G3
505 float z0 = z - Z0; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/tests/graw/
occlusion-query.c 25 #define z0 0.2 macro
31 {-0.9, -0.9, z0, 1.0 },
36 { 0.9, -0.9, z0, 1.0 },
41 { 0.9, 0.9, z0, 1.0 },
46 {-0.9, 0.9, z0, 1.0 },
fs-frontface.c 21 #define z0 0.2 macro
29 {-0.8, -0.9, z0, 1.0 },
34 { -0.2, -0.9, z0, 1.0 },
fs-write-z.c 24 #define z0 0.2 macro
33 {-0.8, -0.9, z0, 1.0 },
38 { -0.2, -0.9, z0, 1.0 },
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/tests/graw/
occlusion-query.c 24 #define z0 0.2 macro
30 {-0.9, -0.9, z0, 1.0 },
35 { 0.9, -0.9, z0, 1.0 },
40 { 0.9, 0.9, z0, 1.0 },
45 {-0.9, 0.9, z0, 1.0 },
fs-frontface.c 21 #define z0 0.2 macro
29 {-0.8, -0.9, z0, 1.0 },
34 { -0.2, -0.9, z0, 1.0 },
fs-write-z.c 24 #define z0 0.2 macro
33 {-0.8, -0.9, z0, 1.0 },
38 { -0.2, -0.9, z0, 1.0 },
  /xsrc/external/mit/mesa-demos/dist/src/redbook/
aapoly.c 62 GLdouble z0, GLdouble z1)
82 v[0][2] = v[1][2] = v[2][2] = v[3][2] = z0;
  /xsrc/external/mit/mesa-demos/dist/src/xdemos/
glxpbdemo.c 245 GLfloat z0, GLfloat z1, GLenum type)
278 if (z0 > z1) {
279 tmp = z0;
280 z0 = z1;
287 v[0][2] = v[3][2] = v[4][2] = v[7][2] = z0;
pbdemo.c 312 GLfloat z0, GLfloat z1, GLenum type)
345 if (z0 > z1) {
346 tmp = z0;
347 z0 = z1;
354 v[0][2] = v[3][2] = v[4][2] = v[7][2] = z0;
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
float64.glsl 268 uint z0;
272 z0 = mix(0u, a0, count == 0);
273 z0 = mix(z0, (a0 >> count), count < 32);
283 z0Ptr = z0;
310 uint z0 = 0u;
323 z0 = mix(z0, a0 >> count, count < 32);
326 z0 = mix(z0, 0u, (count == 32))
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
float64.glsl 343 uint z0;
347 z0 = mix(0u, a0, count == 0);
348 z0 = mix(z0, (a0 >> count), count < 32);
358 z0Ptr = z0;
385 uint z0 = 0u;
398 z0 = mix(z0, a0 >> count, count < 32);
401 z0 = mix(z0, 0u, (count == 32))
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
s_aatriangle.c 47 GLfloat z0, GLfloat z1, GLfloat z2, GLfloat plane[4])
51 const GLfloat pz = z1 - z0;
55 const GLfloat qz = z2 - z0;
66 const GLfloat d = -(a * v0[0] + b * v0[1] + c * z0);
s_aaline.c 81 * z0, and z1 are the end point values to interpolate.
91 GLfloat z0, GLfloat z1, GLfloat plane[4])
97 const GLfloat pz = z1 - z0;
104 const GLfloat d = -(a * x0 + b * y0 + c * z0);
113 const GLfloat pz = z0 - z1;
117 const GLfloat d = -(a * x0 + b * y0 + c * z0);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
s_aatriangle.c 48 GLfloat z0, GLfloat z1, GLfloat z2, GLfloat plane[4])
52 const GLfloat pz = z1 - z0;
56 const GLfloat qz = z2 - z0;
67 const GLfloat d = -(a * v0[0] + b * v0[1] + c * z0);
s_aaline.c 82 * z0, and z1 are the end point values to interpolate.
92 GLfloat z0, GLfloat z1, GLfloat plane[4])
98 const GLfloat pz = z1 - z0;
105 const GLfloat d = -(a * x0 + b * y0 + c * z0);
114 const GLfloat pz = z0 - z1;
118 const GLfloat d = -(a * x0 + b * y0 + c * z0);
  /xsrc/external/mit/mesa-demos/dist/src/demos/
engine.c 305 const float z0 = PistonShaftPosition(eng, 0); local
307 return z1 - z0;
420 const float z0 = -0.5 * thickness, z1 = -z0; local
455 glVertex3f(points[35-i][0], points[35-i][1], z0);
465 glVertex3f(points[j][0], points[j][1], z0);
611 const float z0 = 0; local
621 glVertex3f( x, -y, z0);
622 glVertex3f( x, y, z0);
629 glVertex3f(-x, y, z0);
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/glsl/
array.c 85 float z0 = fz(x, y), z1 = fz(x, y + dy); local
88 glVertex3f(x, y, z0);
skinning.c 61 float z0 = j * dz; local
70 glVertex3f(x, y, z0);
74 glVertex3f(x, y, z0 + dz);
  /xsrc/external/mit/freetype/dist/src/tools/
afblue.pl 62 my $enum_element_re = qr/ ^ \s* ( [A-Za-z0-9_]+ ) \s* $ /x;
547 s/ @ ( [A-Za-z0-9_]+? ) @ / emit_diversion($1) /egx;

Completed in 25 milliseconds

1 2 3 4 5 6