Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix description of get_access() #538

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions adoc/chapters/programming_interface.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4662,8 +4662,9 @@ accessor<T, Dimensions, Mode, Targ> get_access(handler& commandGroupHandler)
----
a@ Returns a valid [code]#accessor# to the buffer with the specified
access mode and target in the command group buffer.
The value of target can be [code]#target::device# or
[code]#target::constant_buffer#.
The value of target can be [code]#target::device#,
[code]#target::constant_buffer# or
[code]#target::host_task.

a@
[source]
Expand All @@ -4689,7 +4690,8 @@ accessor<T, Dimensions, Mode, Targ> get_access(handler& commandGroupHandler,
mode and target in the command group buffer. The accessor is a
<<ranged-accessor>>, where the range starts at the given offset from the
beginning of the buffer. The value of target can be
[code]#target::device# or [code]#target::constant_buffer#.
[code]#target::device#, [code]#target::constant_buffer# or
[code]#target::host_task.
gmlueck marked this conversation as resolved.
Show resolved Hide resolved

Throws an [code]#exception# with the [code]#errc::invalid# error code if
the sum of [code]#accessRange# and [code]#accessOffset# exceeds the range of
Expand Down
Loading