Searched defs:transferOps (Results 1 - 6 of 6) sorted by relevance

/external/mesa3d/src/mesa/main/
H A Dpixeltransfer.c161 * as indicated by the transferOps bitmask
164 _mesa_apply_rgba_transfer_ops(struct gl_context *ctx, GLbitfield transferOps, argument
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) {
228 _mesa_apply_ci_transfer_ops(const struct gl_context *ctx, GLbitfield transferOps, GLuint n, GLuint indexes[]) argument
H A Dpack.c496 * transferOps - apply offset/bias/lookup ops?
503 GLbitfield transferOps )
524 transferOps &= IMAGE_SHIFT_OFFSET_BIT;
529 if (transferOps == 0 &&
535 else if (transferOps == 0 &&
556 if (transferOps & IMAGE_SHIFT_OFFSET_BIT) {
1352 GLbitfield transferOps)
1359 if (transferOps & IMAGE_CLAMP_BIT) {
1371 if (transferOps & IMAGE_CLAMP_BIT) {
1570 GLbitfield transferOps)
1350 _mesa_pack_luminance_from_rgba_float(GLuint n, GLfloat rgba[][4], GLvoid *dstAddr, GLenum dst_format, GLbitfield transferOps) argument
1566 _mesa_unpack_color_index_to_rgba_float(struct gl_context *ctx, GLuint dims, const void *src, GLenum srcFormat, GLenum srcType, int srcWidth, int srcHeight, int srcDepth, const struct gl_pixelstore_attrib *srcPacking, GLbitfield transferOps) argument
1621 _mesa_unpack_color_index_to_rgba_ubyte(struct gl_context *ctx, GLuint dims, const void *src, GLenum srcFormat, GLenum srcType, int srcWidth, int srcHeight, int srcDepth, const struct gl_pixelstore_attrib *srcPacking, GLbitfield transferOps) argument
[all...]
H A Dreadpix.c88 GLbitfield transferOps = ctx->_ImageTransferState; local
110 transferOps |= IMAGE_CLAMP_BIT;
118 transferOps |= IMAGE_CLAMP_BIT;
128 transferOps &= ~IMAGE_CLAMP_BIT;
131 return transferOps;
428 GLbitfield transferOps; local
445 transferOps = _mesa_get_readpixels_transfer_ops(ctx, rb->Format, format,
489 /* Since _mesa_format_convert does not handle transferOps we need to handle
492 * integer transferOps do not apply.
498 assert(!transferOps || (transferOp
[all...]
H A Dtexgetimage.c312 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; local
583 transferOps |
307 get_tex_rgba_compressed(struct gl_context *ctx, GLuint dimensions, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLint depth, GLenum format, GLenum type, GLvoid *pixels, struct gl_texture_image *texImage, GLbitfield transferOps) argument
424 get_tex_rgba_uncompressed(struct gl_context *ctx, GLuint dimensions, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLint depth, GLenum format, GLenum type, GLvoid *pixels, struct gl_texture_image *texImage, GLbitfield transferOps) argument
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_copypix.c95 GLuint transferOps = ctx->_ImageTransferState; local
167 if (transferOps) {
168 _mesa_apply_rgba_transfer_ops(ctx, transferOps, width,
H A Ds_drawpix.c419 GLbitfield transferOps = ctx->_ImageTransferState; local
441 transferOps |= IMAGE_CLAMP_BIT;
468 transferOps);
474 transferOps = 0;
518 if (transferOps)
519 _mesa_apply_rgba_transfer_ops(ctx, transferOps, spanWidth, (GLfloat (*)[4])rgba);

Completed in 1314 milliseconds