| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/ |
| u_split_draw.c | 28 uint32_t *count, uint32_t *step) 31 *step = *count; 37 *count = *step = max_verts; 40 *count = *step = max_verts - (max_verts % 2); 44 *step = max_verts - 1; 48 *step = max_verts - 1; 54 *count = *step = max_verts - (max_verts % 3); 58 *step = max_verts - 2; 63 *count = *step = max_verts;
|
| u_split_draw.h | 32 * step in the buffer so the draw can be split into multiple draws. 39 * \param step return parameter, will contain how many vertices should be 46 uint32_t *count, uint32_t *step);
|
| /xsrc/external/mit/xf86-video-intel/dist/src/scripts/ |
| tv.5c | 23 int step; 39 term_t approx = { step = num, size = den }; 40 rational dist = v - approx.step/approx.size; 72 d.dda1 = (term_t) { step = floor (dda1), size = 4096 }; 74 rational dda2 = dda1 - d.dda1.step; 77 rational dda3 = dda2 * d.dda2.size - d.dda2.step; 81 d.result = d.pixel * (d.dda1.step + 82 (d.dda2.step + d.dda3.step/d.dda3.size) / 94 printf ("\t.dda1_inc\t= %6d,\n", d.dda1.step); [all...] |
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/scripts/ |
| tv.5c | 23 int step; 39 term_t approx = { step = num, size = den }; 40 rational dist = v - approx.step/approx.size; 72 d.dda1 = (term_t) { step = floor (dda1), size = 4096 }; 74 rational dda2 = dda1 - d.dda1.step; 77 rational dda3 = dda2 * d.dda2.size - d.dda2.step; 81 d.result = d.pixel * (d.dda1.step + 82 (d.dda2.step + d.dda3.step/d.dda3.size) / 94 printf ("\t.dda1_inc\t= %6d,\n", d.dda1.step); [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/trivial/ |
| dlist-degenerate.c | 63 const GLfloat step = 3.0; local 75 Zrot -= step; 78 Zrot += step; 92 const GLfloat step = 3.0; local 97 Xrot -= step; 100 Xrot += step; 103 Yrot -= step; 106 Yrot += step;
|
| tri-scissor-tri.c | 72 int step = 2; local 75 Left -= step; 78 Left += step; 81 Right -= step; 84 Right += step; 87 Bottom -= step; 90 Bottom += step; 93 Top -= step; 96 Top += step;
|
| tri-clip.c | 67 const GLfloat step = 0.25; local 72 Ypos += step; 75 Ypos -= step; 78 Xpos -= step; 81 Xpos += step;
|
| pgon-mode.c | 81 const GLfloat step = 3.0; local 92 Zrot -= step; 95 Zrot += step;
|
| /xsrc/external/mit/xf86-video-intel/dist/test/ |
| render-triangle.c | 56 static void step_to_point(int step, int width, int height, XPointFixed *p) 59 p->x = (step - 64) << 16; 62 step -= width - 128; 63 if (step <= 0) 67 p->y = (step - 64) << 16; 68 step -= height - 128; 70 if (step <= 0) 73 p->x = (width + 64 - step) << 16; 75 step -= width - 128; 77 if (step <= 0 95 unsigned step, max; local [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/glsl/ |
| noise.c | 114 const GLfloat step = 0.01; local 124 Slice -= step; 127 Slice += step; 147 const GLfloat step = 3.0f; local 154 xRot -= step; 157 xRot += step; 160 yRot -= step; 163 yRot += step;
|
| array.c | 155 const GLfloat step = 2.0; local 171 zRot += step; 174 zRot -= step; 188 const GLfloat step = 2.0; local 195 xRot += step; 198 xRot -= step; 201 yRot -= step; 204 yRot += step;
|
| multinoise.c | 120 const GLfloat step = 0.01; local 130 Slice -= step; 133 Slice += step; 159 const GLfloat step = 3.0f; local 166 xRot -= step; 169 xRot += step; 172 yRot -= step; 175 yRot += step;
|
| simplex-noise.c | 112 const GLfloat step = 1.0;//0.01; local 122 Slice -= step; 125 Slice += step; 145 const GLfloat step = 3.0f; local 152 xRot -= step; 155 xRot += step; 158 yRot -= step; 161 yRot += step;
|
| toyball.c | 110 const GLfloat step = 2.0; local 123 zRot += step; 126 zRot -= step; 140 const GLfloat step = 2.0; local 147 xRot += step; 150 xRot -= step; 153 yRot -= step; 156 yRot += step;
|
| brick.c | 115 const GLfloat step = 3.0f; local 122 xRot -= step; 125 xRot += step; 128 yRot -= step; 131 yRot += step;
|
| /xsrc/external/mit/mesa-demos/dist/src/tests/ |
| zdrawpix.c | 112 const GLfloat step = 1.0; local 127 Zpos -= step; 130 Zpos += step; 144 const GLfloat step = 3.0; local 149 Xrot -= step; 152 Xrot += step; 155 Yrot -= step; 158 Yrot += step;
|
| vptorus.c | 84 const GLfloat step = 3.0; local 89 Xrot -= step; 92 Xrot += step; 95 Yrot -= step; 98 Yrot += step;
|
| condrender.c | 48 float step; local 55 step = (time - lastTime) / 1000.0 * sign; 58 Xpos += step; 197 const GLfloat step = 0.1; local 202 Xpos -= step; 205 Xpos += step;
|
| bug_3195.c | 65 int step; local 72 step = (time - lastTime) / 10 * BiasStepSign; 75 Bias += step; 155 const GLfloat step = 3.0; local 160 Xrot -= step; 163 Xrot += step; 166 Yrot -= step; 169 Yrot += step;
|
| zcomp.c | 142 const GLfloat step = 1.0; local 157 Zpos -= step; 160 Zpos += step; 174 const GLfloat step = 3.0; local 179 Xrot -= step; 182 Xrot += step; 185 Yrot -= step; 188 Yrot += step;
|
| arbfpspec.c | 85 const GLfloat step = 3.0; local 90 Xrot -= step; 93 Xrot += step; 96 Yrot -= step; 99 Yrot += step;
|
| arbfptexture.c | 56 float step = 3.0; local 62 Xrot += step; 65 Xrot -= step; 68 Yrot += step; 71 Yrot -= step;
|
| /xsrc/external/mit/libdrm/dist/tests/modetest/ |
| cursor.c | 69 void (*run)(struct cursor *cursor, const struct cursor_step *step); 77 static void set_cursor(struct cursor *cursor, const struct cursor_step *step) 79 int enabled = (step->arg ^ count) & 0x1; 90 static void move_cursor(struct cursor *cursor, const struct cursor_step *step) 100 x += cursor->dx * step->arg; 101 y += cursor->dy * step->arg; 144 const struct cursor_step *step = &steps[indx % ARRAY_SIZE(steps)]; local 149 step->run(cursor, step); 152 /* iterate to next count/step: * [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/demos/ |
| lodbias.c | 62 int step; local 69 step = (time - lastTime) / 10 * BiasStepSign; 72 Bias += step; 140 const GLfloat step = 3.0; local 152 Zrot -= step; 155 Zrot += step; 186 const GLfloat step = 3.0; local 191 Xrot -= step; 194 Xrot += step; 197 Yrot -= step; [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/perf/ |
| glmain.c | 205 const GLfloat step = 3.0; local 210 Zrot -= step; 213 Zrot += step; 227 const GLfloat step = 3.0; local 232 Xrot -= step; 235 Xrot += step; 238 Yrot -= step; 241 Yrot += step;
|