Lines Matching refs:dstImageInfo
3430 void copy_image_data( image_descriptor *srcImageInfo, image_descriptor *dstImageInfo, void *imageVa… in copy_image_data() argument
3449 dst_row_pitch_lod = dstImageInfo->rowPitch; in copy_image_data()
3451 dst_slice_pitch_lod = dstImageInfo->slicePitch; in copy_image_data()
3492 if( dstImageInfo->num_mip_levels > 1) in copy_image_data()
3497 switch( dstImageInfo->type ) in copy_image_data()
3502 dst_width_lod = (dstImageInfo->width >> dst_lod ) ? ( dstImageInfo->width >> dst_lod ): 1; in copy_image_data()
3509 dst_width_lod = (dstImageInfo->width >> dst_lod ) ? ( dstImageInfo->width >> dst_lod ): 1; in copy_image_data()
3510 if( dstImageInfo->type == CL_MEM_OBJECT_IMAGE2D ) in copy_image_data()
3511 … dst_height_lod = (dstImageInfo->height >> dst_lod ) ? ( dstImageInfo->height >> dst_lod ): 1; in copy_image_data()
3518 dst_width_lod = (dstImageInfo->width >> dst_lod ) ? ( dstImageInfo->width >> dst_lod ): 1; in copy_image_data()
3519 dst_height_lod = (dstImageInfo->height >> dst_lod ) ? ( dstImageInfo->height >> dst_lod ): 1; in copy_image_data()
3520 if( dstImageInfo->type == CL_MEM_OBJECT_IMAGE3D ) in copy_image_data()
3521 dst_depth_lod = (dstImageInfo->depth >> dst_lod ) ? ( dstImageInfo->depth >> dst_lod ): 1; in copy_image_data()
3525 dst_mip_level_offset = compute_mip_level_offset( dstImageInfo, dst_lod ); in copy_image_data()
3526 dst_row_pitch_lod = dst_width_lod * get_pixel_size( dstImageInfo->format); in copy_image_data()