Theresa Foley

Results 83 comments of Theresa Foley

What was the full command line you used? If `emitEntryPoint` failed to produce a blob output, that would seem to imply that it ran into some other kind of compilation...

The operation you are trying to write there wouldn't work today, although I see what you mean. You *can* write functions that operate generically over vectors of different sizes, but...

Hello. We do not currently have any developers working on adding Android, iOS, or Mac support. Some work has been done in the past to try to get our premake-based...

Unfortunately the current Slang contributors don't have a lot of focus on Android, iOS, and MacOS, so I can't promise that those platforms will happen in the near future. We...

Initial steps toward this feature have been made in #1366 and #1403. With the functionality in those changes we should in theory support: * A `struct` can inherit from zero...

The case of a type inheriting an interface conformance is actually a tricky one because of how it interacts with a few advanced features of interfaces. Suppose we have: ```...

Support for more targets is always desirable, and we’d welcome pull requests that work toward support for the Metal shading language ESSL, etc. The existing GLSL output from Slang can...

The part of this about emitting warnings is probably relatively easy to add to the current codebase. We already have a core function (`_coerce()`) that handles the details of implicit...

The situation is more complicated and a bit deeper than it initially appears. The inconsistency in what the implementation currently does is in part based on decisions that have yet...

Really the design choice comes down to a decision between a few different mental models: 1. Everything is always default-initialized (example precedent: the original version of C#). In some languages,...