Lines Matching defs:image
1048 * Create a new image built-in function for all known image types.
1059 * Create new functions for all known image built-ins and types.
1062 * false, emit a function prototype with no body for each image
8164 ir_variable *image = in_var(image_type, "image");
8170 2, image, coord);
8183 /* Set the maximal set of qualifiers allowed for this image
8190 image->data.memory_read_only = (flags & IMAGE_FUNCTION_READ_ONLY) != 0;
8191 image->data.memory_write_only = (flags & IMAGE_FUNCTION_WRITE_ONLY) != 0;
8192 image->data.memory_coherent = true;
8193 image->data.memory_volatile = true;
8194 image->data.memory_restrict = true;
8220 ir_variable *image = in_var(image_type, "image");
8221 ir_function_signature *sig = new_sig(ret_type, shader_image_size, 1, image);
8223 /* Set the maximal set of qualifiers allowed for this image
8230 image->data.memory_read_only = true;
8231 image->data.memory_write_only = true;
8232 image->data.memory_coherent = true;
8233 image->data.memory_volatile = true;
8234 image->data.memory_restrict = true;
8244 ir_variable *image = in_var(image_type, "image");
8246 new_sig(glsl_type::int_type, shader_samples, 1, image);
8248 /* Set the maximal set of qualifiers allowed for this image
8255 image->data.memory_read_only = true;
8256 image->data.memory_write_only = true;
8257 image->data.memory_coherent = true;
8258 image->data.memory_volatile = true;
8259 image->data.memory_restrict = true;