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

  /external/mesa3d/src/mesa/main/
pack.h 54 GLbitfield transferOps);
91 GLbitfield transferOps);
103 GLbitfield transferOps);
110 GLbitfield transferOps);
pixeltransfer.h 58 _mesa_apply_rgba_transfer_ops(struct gl_context *ctx, GLbitfield transferOps,
67 GLbitfield transferOps,
pixeltransfer.c 161 * as indicated by the transferOps bitmask
164 _mesa_apply_rgba_transfer_ops(struct gl_context *ctx, GLbitfield transferOps,
168 if (transferOps & IMAGE_SCALE_BIAS_BIT) {
176 if (transferOps & IMAGE_MAP_COLOR_BIT) {
181 if (transferOps & IMAGE_CLAMP_BIT) {
229 GLbitfield transferOps,
232 if (transferOps & IMAGE_SHIFT_OFFSET_BIT) {
235 if (transferOps & IMAGE_MAP_COLOR_BIT) {
readpix.c 88 GLbitfield transferOps = ctx->_ImageTransferState;
110 transferOps |= IMAGE_CLAMP_BIT;
118 transferOps |= IMAGE_CLAMP_BIT;
128 transferOps &= ~IMAGE_CLAMP_BIT;
131 return transferOps;
433 GLbitfield transferOps;
450 transferOps = _mesa_get_readpixels_transfer_ops(ctx, rb->Format, format,
494 /* Since _mesa_format_convert does not handle transferOps we need to handle
497 * integer transferOps do not apply.
503 assert(!transferOps || (transferOps && !dst_is_integer))
    [all...]
pack.c 480 * transferOps - apply offset/bias/lookup ops?
487 GLbitfield transferOps )
508 transferOps &= IMAGE_SHIFT_OFFSET_BIT;
513 if (transferOps == 0 &&
519 else if (transferOps == 0 &&
540 if (transferOps & IMAGE_SHIFT_OFFSET_BIT) {
    [all...]
texgetimage.c 312 GLbitfield transferOps)
429 GLbitfield transferOps)
450 /* Since _mesa_format_convert does not handle transferOps we need to handle
453 * integer then transferOps do not apply.
455 assert(!transferOps || (transferOps && !dst_is_integer));
482 if (transferOps) {
516 _mesa_apply_rgba_transfer_ops(ctx, transferOps, width * height, rgba);
571 GLbitfield transferOps = 0x0;
583 transferOps |= IMAGE_CLAMP_BIT
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_drawpix.c 419 GLbitfield transferOps = ctx->_ImageTransferState;
441 transferOps |= IMAGE_CLAMP_BIT;
462 /* This will handle byte swapping and transferops if needed */
468 transferOps);
474 transferOps = 0;
518 if (transferOps)
519 _mesa_apply_rgba_transfer_ops(ctx, transferOps, spanWidth, (GLfloat (*)[4])rgba);
s_copypix.c 95 GLuint transferOps = ctx->_ImageTransferState;
167 if (transferOps) {
168 _mesa_apply_rgba_transfer_ops(ctx, transferOps, width,

Completed in 2326 milliseconds