Hai Nguyen

Results 32 issues of Hai Nguyen

This is a known issue. It may be related to the driver. Will investigate.

**Header Files** Can the header files that's located in the root of all the release asset zip and tar.gz files be moved into an `include` or `inc` or maybe even...

kind:cleanup
goal:client support
siggraph2024

HLSL has 1-dimensional matrix types that DXC accepts. Metal does not have them. I think for on ramping it might be just to have them in case someone uses them....

kind:enhancement
goal:client support

For the shader below, Slang current generates the following error due to the implementation of `A::B::AddBlue()` and `A::AddGreen()` living outside the namespace: ``` shader.hlsl(46): error 20001: unexpected '::', expected ';'...

kind:documentation
goal:client support

Currently, Slang does not support vector types for the `and` intrinsic: ``` shader.hlsl(14): error 30019: expected an expression of type 'bool', got 'vector' n = and(m, l); ^ shader.hlsl(14): error...

kind:bug
goal:client support
siggraph2024

I see that #488 was closed as completed. However, it doesn't look `unsigned int` works. The below shader results in the following error message when `unsigned` is used with `int`:...

kind:enhancement
priority:low
goal:client support
siggraph2024

This feature request is for on-ramping. HLSL has a swizzle syntax that allow constants, temporaries, and, variables to swizzle to match the type of the expression. The swizzled expression can...

kind:enhancement
goal:client support
siggraph2024

I'm trying to force scalar block layout via the Slang API and I've gotten it to work by setting `slang::TargetDesc::forceGLSLScalarBufferLayout` to `true`. However when I try to do this with...

kind:question
kind:documentation
goal:client support

This is likely low priority, so filing mostly for documentation purposes right now. Currently, Slang does not support the variant of `GatherAlpha()` that takes a status argument: ``` shader.hlsl(11): error...

kind:enhancement
goal:client support

When using `const` in a `typedef` statement I get his error: ``` shader.hlsl(4): internal error 99999: unexpected condition encountered in Slang compiler: unknown type modifier in semantic checking typedef const...

kind:question
priority:low
goal:client support