Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
GLSL tutorial #19
base: main
Are you sure you want to change the base?
GLSL tutorial #19
Changes from all commits
8c19b34
de0ccfa
0188a3e
aa03e86
de484c4
eacd7cd
66ae663
ad22aa5
cb83769
f2bec5d
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
… when migrating a glsl shader code base to Slang.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a section on the support level of glsl input:
The support for GLSL input in the slang compiler is best-effort rather than spec-complete. The Slang compiler understands many but not all GLSL syntax. Slang is not a drop-in replacement for any existing GLSL compiler. Instead, the intention is to make transition from glsl to Slang easy by allowing mixing GLSL syntax and Slang syntax so the user does not need to modify every line of code before they can use Slang features. The user is still expected to migrate from unsupported GLSL syntax before they can be accepted by the Slang compiler.
Most of the unsupported areas of GLSL syntax are around global parameter or layout declarations. We expect most functions written in GLSL to just work in Slang.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's the options for
slangc
, maybe include the API options as well?Curious, is it necessary to add
-allow-glsl
if your shader has "import glsl;"?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I could give a try and see what the actual behaviors are.
But my understanding is that
import glsl
just imports the GLSL functions top of what is available as Slang core modules.It is not enough to allow the shader to use GLSL specific language syntax such as
layout(location = 0)
.These GLSL keywords are available only when
-allow-glsl
is used.I am not clear on what
-lang glsl
actually does. I thought it is meant to includes-allow-glsl
but when I tried last time, I still had to have-allow-glsl
.I will test a bit and update the document.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don’t think you need -allow-glsl if you have #version 450 declaration in the source file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
-lang glsl does nothing right now so let’s not mention it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not true. Uniform buffer defaults to std140, shader storage buffers and structured buffers default to std430.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The example below is using HLSL syntax but this doc is for glsl users, so it seems inappropriate, unless we start with some explanation, such as “to explicitly specify the layout of individual buffers, you can use the Slang syntax when declaring the buffer.”
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a case for specifying layout for a ConstantBuffer<>.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is also -fvk-use-dx-layout now. See dxc documentation for what it means.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can just say matNxM is a typedef to floatNxM.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also need a section to talk about the difference of operator ==, * between glsl and HLSL, and how -allow-glsl/#version/import glsl changes that default behavior.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And a section on how shader storage buffers are parsed and supported.
Show the glsl syntax and equivalent slang code for constant buffers, structured buffers and storage buffers, so people know how to migrate the code to slang if they want to do so.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also mention that the actual version number after #version is ignored by the compiler. The only difference made by a #version 450 line is to convey to the slang compiler that the module is in glsl syntax, that is, it has the same effect as import glsl; or -allow-glsl.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Talk about -fvk-use-EntryPoint-name here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn’t it called combined texture sampler in Vulkan?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not true if you are targeting spirv and Vulkan, where there is a direct translation. The legalization only take place for targets that does not natively support combined texture samplers.