- 20 Apr, 2017 3 commits
-
-
John Kessenich authored
Also, fixed one test file that didn't have its syntax error as the last line.
-
John Kessenich authored
-
John Kessenich authored
Longer term, this storage class should be generated based on the mode of compilation.
-
- 19 Apr, 2017 2 commits
-
-
John Kessenich authored
HLSL: structuredbuffer counter functionality
-
John Kessenich authored
-
- 18 Apr, 2017 2 commits
-
-
John Kessenich authored
-
steve-lunarg authored
This adds TProgram::getUniformBlockCounterIndex(int index), which returns the index the block of the counter buffer associated with the block of the passed in index, if any, or -1 if none.
-
- 14 Apr, 2017 2 commits
-
-
steve-lunarg authored
-
steve-lunarg authored
This is WIP, heavy on the IP part. There's not yet enough to use in real workloads. Currently present: * Creation of separate counter buffers for structured buffer types needing them. * IncrementCounter / DecrementCounter methods * Postprocess to remove unused counter buffers from linkage * Associated counter buffers are given @count suffix (invalid as a user identifier) Not yet present: * reflection queries to obtain bindings for counter buffers * Append/Consume buffers * Ability to use SB references passed as fn parameters
-
- 13 Apr, 2017 2 commits
-
-
John Kessenich authored
-
John Kessenich authored
-
- 12 Apr, 2017 7 commits
-
-
John Kessenich authored
-
John Kessenich authored
-
John Kessenich authored
-
John Kessenich authored
HLSL: Fix #672: Support 1.#INF and -1.#INF syntax.
-
John Kessenich authored
-
John Kessenich authored
Null-conversion needs the right sized vectors to kick out with matching types.
-
John Kessenich authored
-
- 11 Apr, 2017 2 commits
-
-
John Kessenich authored
-
John Kessenich authored
-
- 10 Apr, 2017 2 commits
-
-
John Kessenich authored
HLSL: fix return type for isfinite
-
steve-lunarg authored
The prior decomposition of isfinite was not setting the return type on the sequence node. (Sequence was used because there's an internal temporary to avoid the complex rvalue problem).
-
- 08 Apr, 2017 1 commit
-
-
John Kessenich authored
Implement the extension SPV_KHR_16bit_storage
-
- 07 Apr, 2017 5 commits
-
-
John Kessenich authored
-
John Kessenich authored
-
John Kessenich authored
HLSL: cast bracket dereference index to int type if not.
-
Rex Xu authored
-
steve-lunarg authored
HLSL can index arrays using operator[] with non-integer types, and inserts a conversion to a uint if needed.
-
- 06 Apr, 2017 2 commits
-
-
John Kessenich authored
-
John Kessenich authored
HLSL: allow non-vec3 tessellation coordinate declarations
-
- 05 Apr, 2017 2 commits
-
-
John Kessenich authored
Corresponds to the EShMsgHlslOffsets flag in messages. Works for both GLSL and HLSL.
-
steve-lunarg authored
HLSL requires vec2 tessellation coordinate declarations in some cases (e.g, isoline topology), where SPIR-V requires the TessCoord qualified builtin to be a vec3 in all cases. This alters the IO form of the variable to be a vec3, which will be copied to the shader's declared type if needed. This is not a validation; the shader type must be correct.
-
- 04 Apr, 2017 8 commits
-
-
John Kessenich authored
-
Juan Lopez authored
C++11 features remove the dependencies from OS specific code. Changes: - Making WorkList class to have its own mutex instead of the OS specific global one. The new mutex is the one from std library. The OS specific code is also removed. - Using the C++11 std library to handle threads in StandAlone application and enabling concurrent processing on non-windows platforms. - converting the global variable Worklist into local variable workList.
-
John Kessenich authored
-
John Kessenich authored
Somewhat complex due to recognizing a general scalar, but not replicating it for each member to avoid side effects.
-
John Kessenich authored
HLSL: Decompose OpIsFinite to avoid capability restrictions
-
John Kessenich authored
Improves foundation for adding scalar casts. Makes handle/make names more sane, better commented, uses more precise subclass typing, and removes mutual recursion between converting initializer lists and making constructors.
-
John Kessenich authored
HLSL: Support InputPatch variables in patch constant functions
-