Lines Matching defs:texel
1272 GLfloat *texel)
1283 texel[RCOMP] = UBYTE_TO_FLOAT(dst[0]);
1284 texel[GCOMP] = UBYTE_TO_FLOAT(dst[1]);
1285 texel[BCOMP] = UBYTE_TO_FLOAT(dst[2]);
1286 texel[ACOMP] = 1.0f;
1292 GLint rowStride, GLint i, GLint j, GLfloat *texel)
1305 texel[RCOMP] = UBYTE_TO_FLOAT(dst[0]);
1306 texel[GCOMP] = UBYTE_TO_FLOAT(dst[1]);
1307 texel[BCOMP] = UBYTE_TO_FLOAT(dst[2]);
1308 texel[ACOMP] = 1.0f;
1313 GLint rowStride, GLint i, GLint j, GLfloat *texel)
1326 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(dst[0]);
1327 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(dst[1]);
1328 texel[BCOMP] = util_format_srgb_8unorm_to_linear_float(dst[2]);
1329 texel[ACOMP] = 1.0f;
1334 GLint rowStride, GLint i, GLint j, GLfloat *texel)
1345 texel[RCOMP] = UBYTE_TO_FLOAT(dst[0]);
1346 texel[GCOMP] = UBYTE_TO_FLOAT(dst[1]);
1347 texel[BCOMP] = UBYTE_TO_FLOAT(dst[2]);
1348 texel[ACOMP] = UBYTE_TO_FLOAT(dst[3]);
1353 GLint rowStride, GLint i, GLint j, GLfloat *texel)
1364 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(dst[0]);
1365 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(dst[1]);
1366 texel[BCOMP] = util_format_srgb_8unorm_to_linear_float(dst[2]);
1367 texel[ACOMP] = UBYTE_TO_FLOAT(dst[3]);
1372 GLint rowStride, GLint i, GLint j, GLfloat *texel)
1383 texel[RCOMP] = USHORT_TO_FLOAT(dst);
1384 texel[GCOMP] = 0.0f;
1385 texel[BCOMP] = 0.0f;
1386 texel[ACOMP] = 1.0f;
1391 GLint rowStride, GLint i, GLint j, GLfloat *texel)
1407 texel[RCOMP] = USHORT_TO_FLOAT(dst[0]);
1408 texel[GCOMP] = USHORT_TO_FLOAT(dst[1]);
1409 texel[BCOMP] = 0.0f;
1410 texel[ACOMP] = 1.0f;
1415 GLint rowStride, GLint i, GLint j, GLfloat *texel)
1426 texel[RCOMP] = SHORT_TO_FLOAT(dst);
1427 texel[GCOMP] = 0.0f;
1428 texel[BCOMP] = 0.0f;
1429 texel[ACOMP] = 1.0f;
1434 GLint rowStride, GLint i, GLint j, GLfloat *texel)
1450 texel[RCOMP] = SHORT_TO_FLOAT(dst[0]);
1451 texel[GCOMP] = SHORT_TO_FLOAT(dst[1]);
1452 texel[BCOMP] = 0.0f;
1453 texel[ACOMP] = 1.0f;
1459 GLfloat *texel)
1471 texel[RCOMP] = UBYTE_TO_FLOAT(dst[0]);
1472 texel[GCOMP] = UBYTE_TO_FLOAT(dst[1]);
1473 texel[BCOMP] = UBYTE_TO_FLOAT(dst[2]);
1474 texel[ACOMP] = UBYTE_TO_FLOAT(dst[3]);
1480 GLint i, GLint j, GLfloat *texel)
1492 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(dst[0]);
1493 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(dst[1]);
1494 texel[BCOMP] = util_format_srgb_8unorm_to_linear_float(dst[2]);
1495 texel[ACOMP] = UBYTE_TO_FLOAT(dst[3]);