Home
last modified time | relevance | path

Searched refs:dst_img (Results 1 – 8 of 8) sorted by relevance

/external/libdrm/tests/exynos/
Dexynos_fimg2d_test.c246 struct g2d_image src_img = {0}, dst_img = {0}; in g2d_copy_test() local
255 dst_img.bo[0] = dst->handle; in g2d_copy_test()
300 dst_img.width = img_w; in g2d_copy_test()
301 dst_img.height = img_h; in g2d_copy_test()
302 dst_img.stride = dst_img.width * 4; in g2d_copy_test()
303 dst_img.buf_type = G2D_IMGBUF_GEM; in g2d_copy_test()
304 dst_img.color_mode = G2D_COLOR_FMT_ARGB8888 | G2D_ORDER_AXRGB; in g2d_copy_test()
306 ret = g2d_copy(ctx, &src_img, &dst_img, src_x, src_y, dst_x, dst_y, in g2d_copy_test()
454 struct g2d_image src_img = {0}, dst_img = {0}; in g2d_copy_with_scale_test() local
463 dst_img.bo[0] = dst->handle; in g2d_copy_with_scale_test()
[all …]
/external/mesa3d/src/gallium/state_trackers/clover/api/
Dtransfer.cpp156 image &dst_img, const vector_t &dst_orig, in validate_copy() argument
159 if (dst_img.format() != src_img.format()) in validate_copy()
162 if (dst_img == src_img) { in validate_copy()
574 auto &dst_img = obj<image>(d_dst_mem); in clEnqueueCopyImage() local
581 validate_object(q, dst_img, dst_origin, region); in clEnqueueCopyImage()
583 validate_copy(q, dst_img, dst_origin, src_img, src_origin, region); in clEnqueueCopyImage()
587 hard_copy_op(q, &dst_img, dst_origin, in clEnqueueCopyImage()
643 auto &dst_img = obj<image>(d_dst_mem); in clEnqueueCopyBufferToImage() local
647 auto dst_pitch = pitch(region, {{ dst_img.pixel_size(), in clEnqueueCopyBufferToImage()
648 dst_img.row_pitch(), in clEnqueueCopyBufferToImage()
[all …]
/external/mesa3d/src/amd/vulkan/
Dradv_meta_resolve.c621 …struct radv_image *dst_img = cmd_buffer->state.framebuffer->attachments[dest_att.attachment].attac… in radv_cmd_buffer_resolve_subpass() local
624 radv_pick_resolve_method_images(src_img, dst_img, dest_att.layout, cmd_buffer, &resolve_method); in radv_cmd_buffer_resolve_subpass()
649 …struct radv_image *dst_img = cmd_buffer->state.framebuffer->attachments[dest_att.attachment].attac… in radv_cmd_buffer_resolve_subpass() local
651 if (dst_img->surface.dcc_size) { in radv_cmd_buffer_resolve_subpass()
652 radv_initialize_dcc(cmd_buffer, dst_img, 0xffffffff); in radv_cmd_buffer_resolve_subpass()
665 dst_img->vk_format, in radv_cmd_buffer_resolve_subpass()
Dradv_meta_resolve_cs.c551 …struct radv_image *dst_img = cmd_buffer->state.framebuffer->attachments[dest_att.attachment].attac… in radv_cmd_buffer_resolve_subpass_cs() local
560 radv_fast_clear_flush_image_inplace(cmd_buffer, dst_img, &range); in radv_cmd_buffer_resolve_subpass_cs()
/external/skqp/tests/
DSerialProcsTest.cpp79 auto dst_img = picture_to_image(new_pic); in DEF_TEST() local
80 REPORTER_ASSERT(reporter, sk_tool_utils::equal_pixels(src_img.get(), dst_img.get())); in DEF_TEST()
/external/skia/tests/
DSerialProcsTest.cpp79 auto dst_img = picture_to_image(new_pic); in DEF_TEST() local
80 REPORTER_ASSERT(reporter, sk_tool_utils::equal_pixels(src_img.get(), dst_img.get())); in DEF_TEST()
/external/vulkan-validation-layers/layers/
Dbuffer_validation.cpp2098 … const IMAGE_STATE *src_img, const IMAGE_STATE *dst_img, in ValidateCopyImageTransferGranularityRequirements() argument
2112 granularity = GetScaledItg(device_data, cb_node, dst_img); in ValidateCopyImageTransferGranularityRequirements()
2117 GetAdjustedDestImageExtent(src_img->createInfo.format, dst_img->createInfo.format, extent); in ValidateCopyImageTransferGranularityRequirements()
2118 subresource_extent = GetImageSubresourceExtent(dst_img, &region->dstSubresource); in ValidateCopyImageTransferGranularityRequirements()
2120dst_img->createInfo.imageType, i, function, "extent", "VUID-vkCmdCopyImage-dstOffset-01784"); in ValidateCopyImageTransferGranularityRequirements()
Dcore_validation.h679 … const IMAGE_STATE* src_img, const IMAGE_STATE* dst_img,