From 70cbad5db2a019902b5061ad2c7da1e9940fa95f Mon Sep 17 00:00:00 2001 From: Samaresh Kumar Singh Date: Fri, 3 Apr 2026 21:27:28 -0500 Subject: [PATCH] Fix missing property_list in image get_access description tables The synopsis for unsampled_image and sampled_image both include a property_list parameter on get_access and get_host_access, but the description tables in the member function docs were missing it. Align the descriptions with the synopsis and with DPC++ behavior. --- adoc/chapters/programming_interface.adoc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/adoc/chapters/programming_interface.adoc b/adoc/chapters/programming_interface.adoc index 6a00a8de5..a37d34ec9 100644 --- a/adoc/chapters/programming_interface.adoc +++ b/adoc/chapters/programming_interface.adoc @@ -6603,7 +6603,7 @@ template unsampled_image_accessor -get_access(handler& commandGroupHandler) +get_access(handler& commandGroupHandler, const property_list& propList = {}) ---- a@ Returns a valid [code]#unsampled_image_accessor# to the unsampled image with the specified data type, access mode and target in the command group. @@ -6614,7 +6614,8 @@ a@ template ? access_mode::read : access_mode::read_write)> -host_unsampled_image_accessor get_host_access(); +host_unsampled_image_accessor +get_host_access(const property_list& propList = {}) ---- a@ Returns a valid [code]#host_unsampled_image_accessor# to the unsampled image with the specified data type and access mode. @@ -7015,7 +7016,7 @@ a@ ---- template sampled_image_accessor -get_access(handler& commandGroupHandler) +get_access(handler& commandGroupHandler, const property_list& propList = {}) ---- a@ Returns a valid [code]#sampled_image_accessor# to the sampled image with the specified data type and target in the command group. @@ -7024,7 +7025,8 @@ a@ [source] ---- template -host_sampled_image_accessor get_host_access() +host_sampled_image_accessor +get_host_access(const property_list& propList = {}) ---- a@ Returns a valid [code]#host_sampled_image_accessor# to the sampled image with the specified data type in the command group.