Lines Matching refs:new_desc
895 SmartPtr<CLImage> &output, const CLImageDesc &new_desc) in change_image_format() argument
902 output = new CLImage2D (context, new_desc, 0, bind_buf); in change_image_format()
1482 CLImageDesc new_desc; in get_input_image() local
1483 new_desc.format.image_channel_data_type = CL_UNORM_INT8; in get_input_image()
1485 new_desc.format.image_channel_order = CL_RG; in get_input_image()
1486 new_desc.width = rec_desc.width * 4; in get_input_image()
1488 new_desc.format.image_channel_order = CL_R; in get_input_image()
1489 new_desc.width = rec_desc.width * 8; in get_input_image()
1491 new_desc.height = rec_desc.height; in get_input_image()
1492 new_desc.row_pitch = rec_desc.row_pitch; in get_input_image()
1494 change_image_format (context, rec_image, new_image, new_desc); in get_input_image()