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

Missing support for Texture2DMSArray #4427

Closed
chaoticbob opened this issue Jun 19, 2024 · 0 comments · Fixed by #4485
Closed

Missing support for Texture2DMSArray #4427

chaoticbob opened this issue Jun 19, 2024 · 0 comments · Fixed by #4485
Assignees
Labels
goal:client support Feature or fix needed for a current slang user. GoodFirstBug Great bug for people getting going in slang codebase kind:enhancement a desirable new feature, option, or behavior siggraph2024 Issue targeting SIGGRAPH 2024

Comments

@chaoticbob
Copy link
Collaborator

Slang currently does not support Texture2DMSArray but does support Texture2DMS. Please add support for Texture2DMSArray.

Texture2DMS      tex;
Texture2DMSArray mstex;

float4 main()
{
    return tex.Load(int2(0, 0), 0);
    return mstex.Load(int3(0, 0, 0), 0);
}
@ArielG-NV ArielG-NV added kind:enhancement a desirable new feature, option, or behavior GoodFirstBug Great bug for people getting going in slang codebase goal:client support Feature or fix needed for a current slang user. labels Jun 19, 2024
@chaoticbob chaoticbob added the siggraph2024 Issue targeting SIGGRAPH 2024 label Jun 25, 2024
@jkwak-work jkwak-work self-assigned this Jun 26, 2024
jkwak-work added a commit to jkwak-work/slang that referenced this issue Jun 26, 2024
Close shader-slang#4427

We had the postfix order wrong for the keyword MS. This commit changes
the incorrect name Texture2DArrayMS to Texture2DMSArray.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
goal:client support Feature or fix needed for a current slang user. GoodFirstBug Great bug for people getting going in slang codebase kind:enhancement a desirable new feature, option, or behavior siggraph2024 Issue targeting SIGGRAPH 2024
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants