HomeSort by relevance Sort by last modified time
    Searched defs:tex2d (Results 1 - 8 of 8) sorted by null

  /external/mesa3d/src/gallium/tests/graw/
quad-tex.c 123 ubyte tex2d[SIZE][SIZE][4]; local
131 tex2d[t][s][0] = (x) ? 0 : 63;
132 tex2d[t][s][1] = (x) ? 0 : 128;
133 tex2d[t][s][2] = 0;
134 tex2d[t][s][3] = 0xff;
138 tex2d[t][s][0] = s*255/(SIZE-1);
139 tex2d[t][s][1] = t*255/(SIZE-1);
140 tex2d[t][s][2] = (x) ? 0 : 128;
141 tex2d[t][s][3] = 0xff;
146 tex2d[0][0][0] = 0
    [all...]
tex-srgb.c 149 ubyte tex2d[SIZE][SIZE][4]; local
154 tex2d[t][s][0] = 0;
155 tex2d[t][s][1] = s * 255 / SIZE;
156 tex2d[t][s][2] = t * 255 / SIZE;
157 tex2d[t][s][3] = 255;
162 PIPE_FORMAT_B8G8R8A8_UNORM, tex2d);
tex-swizzle.c 124 ubyte tex2d[SIZE][SIZE][4]; local
129 tex2d[t][s][0] = 0; /*B*/
130 tex2d[t][s][1] = t; /*G*/
131 tex2d[t][s][2] = s; /*R*/
132 tex2d[t][s][3] = 1; /*A*/
137 PIPE_FORMAT_B8G8R8A8_UNORM, tex2d);
fs-test.c 252 ubyte tex2d[SIZE][SIZE][4]; local
260 tex2d[t][s][0] = (x) ? 0 : 63;
261 tex2d[t][s][1] = (x) ? 0 : 128;
262 tex2d[t][s][2] = 0;
263 tex2d[t][s][3] = 0xff;
267 tex2d[t][s][0] = s*255/(SIZE-1);
268 tex2d[t][s][1] = t*255/(SIZE-1);
269 tex2d[t][s][2] = (x) ? 0 : 128;
270 tex2d[t][s][3] = 0xff;
275 tex2d[0][0][0] = 0
    [all...]
quad-sample.c 168 ubyte tex2d[SIZE][SIZE][4]; local
176 tex2d[t][s][0] = (x) ? 0 : 63;
177 tex2d[t][s][1] = (x) ? 0 : 128;
178 tex2d[t][s][2] = 0;
179 tex2d[t][s][3] = 0xff;
183 tex2d[t][s][0] = s*255/(SIZE-1);
184 tex2d[t][s][1] = t*255/(SIZE-1);
185 tex2d[t][s][2] = (x) ? 0 : 128;
186 tex2d[t][s][3] = 0xff;
191 tex2d[0][0][0] = 0
    [all...]
vs-test.c 241 ubyte tex2d[SIZE][SIZE][4]; local
249 tex2d[t][s][0] = (x) ? 0 : 63;
250 tex2d[t][s][1] = (x) ? 0 : 128;
251 tex2d[t][s][2] = 0;
252 tex2d[t][s][3] = 0xff;
256 tex2d[t][s][0] = s*255/(SIZE-1);
257 tex2d[t][s][1] = t*255/(SIZE-1);
258 tex2d[t][s][2] = (x) ? 0 : 128;
259 tex2d[t][s][3] = 0xff;
264 tex2d[0][0][0] = 0
    [all...]
gs-test.c 343 ubyte tex2d[SIZE][SIZE][4]; local
351 tex2d[t][s][0] = (x) ? 0 : 63;
352 tex2d[t][s][1] = (x) ? 0 : 128;
353 tex2d[t][s][2] = 0;
354 tex2d[t][s][3] = 0xff;
358 tex2d[t][s][0] = s*255/(SIZE-1);
359 tex2d[t][s][1] = t*255/(SIZE-1);
360 tex2d[t][s][2] = (x) ? 0 : 128;
361 tex2d[t][s][3] = 0xff;
366 tex2d[0][0][0] = 0
    [all...]
  /external/deqp/modules/gles2/functional/
es2fTextureCompletenessTests.cpp 933 tcu::TestCaseGroup* tex2d = new tcu::TestCaseGroup(m_testCtx, "2d", "2D completeness"); local
    [all...]

Completed in 1173 milliseconds