Skip to content

Commit

Permalink
[SYCL][Bindless][Exp] Fix get_mip_level_mem_handle declaration. (#12822)
Browse files Browse the repository at this point in the history
A declaration of get_mip_level_mem_handle incorrectly took sycl::device
as a parameter, which should have been a sycl::queue. This is now fixed.
  • Loading branch information
tangjj11 authored Feb 27, 2024
1 parent 7b41068 commit 9edd27a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sycl/include/sycl/ext/oneapi/bindless_images.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ __SYCL_EXPORT image_mem_handle get_mip_level_mem_handle(
*/
__SYCL_EXPORT image_mem_handle get_mip_level_mem_handle(
const image_mem_handle mipMem, const unsigned int level,
const sycl::device &syclQueue);
const sycl::queue &syclQueue);

/**
* @brief Import external memory taking an external memory handle (the type
Expand Down

0 comments on commit 9edd27a

Please sign in to comment.