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

[HLSL] Support RWBuffer loads and stores #91405

Closed
bogner opened this issue May 7, 2024 · 1 comment
Closed

[HLSL] Support RWBuffer loads and stores #91405

bogner opened this issue May 7, 2024 · 1 comment
Assignees
Labels
backend:DirectX duplicate Resolved as duplicate HLSL HLSL Language Support

Comments

@bogner
Copy link
Contributor

bogner commented May 7, 2024

This issue tracks support for basic RWBuffer support such that we can read and write from a simple buffer:

RWBuffer<int> In;
RWBuffer<int> Out;

[numthreads(8,1,1)]
void main(uint GI : SV_GroupIndex) {
  Out[GI] = In[GI];
}
@bogner bogner added metabug Issue to collect references to a group of similar or related issues. backend:DirectX HLSL HLSL Language Support labels May 7, 2024
@bogner bogner self-assigned this Jun 17, 2024
@damyanp
Copy link
Contributor

damyanp commented Aug 1, 2024

This has been superceded by llvm/wg-hlsl#7

@damyanp damyanp closed this as not planned Won't fix, can't repro, duplicate, stale Aug 1, 2024
@EugeneZelenko EugeneZelenko added duplicate Resolved as duplicate and removed metabug Issue to collect references to a group of similar or related issues. labels Aug 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backend:DirectX duplicate Resolved as duplicate HLSL HLSL Language Support
Projects
Status: Done
Development

No branches or pull requests

3 participants