Skip to content
Closed
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
4 changes: 2 additions & 2 deletions proposals/031-coherent-pointer-operations-and-access.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ All pointers can be casted to each other. Casting must be explicit.
The following keyword use is disallowed:
* `globallycoherent T*`
* `coherent T*`.
* `const T*`, `T const*`, and `T* const`
* `const T*`, `T const*`
* `Ptr<const T>`, `Ptr<coherent T>`, and `Ptr<globallycoherent T>`

### Explicitly allowed keywords
Expand All @@ -245,7 +245,7 @@ The following keyword use is disallowed:
* Logic for pointer access
* Support casting explicitly between pointers
* Disallow `globallycoherent T*` and `coherent T*`
* Disallow `const T*`, `T const*`, and `T* const`
* Disallow `const T*`, `T const*`
* Support for coherent buffers and textures
* Support for workgroup memory pointers.
* Support for coherent workgroup memory
Expand Down