- 20 May, 2020 4 commits
-
-
John Kessenich authored
-
John Kessenich authored
-
John Kessenich authored
-
Roy.li authored
-
- 18 May, 2020 3 commits
-
-
Chow authored
Add check for DOUBLE in low versions, fix issue #2206
-
greg-lunarg authored
Specifically, add flattening of arrayed io for geometry and tesselation shaders. Previously some interface structs just had builtins split out which caused some interfaces to not be exactly the same as that of flattened adjacent stages, affecting validation and correctness. This obviates builtin splitting. That will be removed in a followup commit. It was left in for this commit to better exhibit the functional changes that were made. Fixes #1660.
-
John Kessenich authored
-
- 15 May, 2020 2 commits
-
-
Roy.li authored
According to the spec glsl4.60.7: 4.4.5. Uniform and Shader Storage Block Layout Qualifiers: "The packed qualifier overrides only std140, std430, and shared; other qualifiers are inherited. When packed is used, no shareable layout is guaranteed. The compiler and linker can optimize memory use based on what variables actively get used and on other criteria. Offsets must be queried, as there is no other way of guaranteeing where (and which) variables reside within the block" we should reserve std140 block and shared block in reflection. According to the spec glsl4.60.7: 4.4.5. Uniform and Shader Storage Block Layout Qualifiers: "The row_major and column_major qualifiers only affect the layout of matrices, including all matrices contained in structures and arrays they are applied to, to all depths of nesting. These qualifiers can be applied to other types, but will have no effect." We need ensure all matrix block member been effect. Support EShMsgKeepUncalled in reflection EShMsgKeepUncalled is a link message for link program. We need only one option to control uncalled function optimization. If we set EShMsgKeepUncalled as false in link time, linker won't be keep the uncall function sequence in AST, and if we set EShMsgKeepUncalled as true in link time, linker will keep all uncalled function sequence in AST. So, in reflecte time, we just only travers all function sequence. It make EShMsgKeepUncalled only work at linker, and can effect reflection. Recursively layout packing to "block member" layout packing isn't set recursively, it causes TReflection::getOffsets doesn't work correctly.
-
John Kessenich authored
-
- 14 May, 2020 1 commit
-
-
Jaebaek Seo authored
* Update tests according to spirv-opt update We refactored function inlining pass of spirv-opt and it results in different numbering of result ids in SPIR-V code. This commit updates test cases to avoid a test failure according to the spirv-opt update. * Update known good
-
- 12 May, 2020 2 commits
-
-
John Kessenich authored
-
John Kessenich authored
Fix Web build
-
- 11 May, 2020 3 commits
-
-
Felix Maier authored
-
John Kessenich authored
Explicitly mark EShLanguageMask as unsigned
-
Sebastian Neubauer authored
This allows casting from and to any unsigned value, previously this was undefined behavior. This fixes ubsan complaining in `TParseContext::layoutQualifierCheck`, where `~EShLangComputeMask` is used.
-
- 01 May, 2020 8 commits
-
-
John Kessenich authored
-
John Kessenich authored
Noticed this when looking at swizzles. It's at least better structure, removing hard-to-see early returns, which might be contributing to bugs.
-
John Kessenich authored
Add support for es extension GL_EXT_blend_func_extended
-
John Kessenich authored
-
John Kessenich authored
Add support for extension GL_EXT_shader_implicit_conversions
-
Pankaj Mistry authored
* Introduces builtin variables gl_SecondaryFragColorEXT and gl_SecondaryFragDataEXT * Introduces builtin constant gl_MaxDualSourceDrawBuffersEXT * enables support for layout qualifier "index" in es profile
-
John Kessenich authored
-
pmistryNV authored
-
- 30 Apr, 2020 2 commits
-
-
Pankaj Mistry authored
Updated extension management in TIntermediate class.
-
John Kessenich authored
-
- 29 Apr, 2020 1 commit
-
-
pmistryNV authored
-
- 28 Apr, 2020 2 commits
-
-
pmistryNV authored
-
dan sinclair authored
This variable is no longer used, remove.
-
- 27 Apr, 2020 2 commits
-
-
pmistryNV authored
-
John Kessenich authored
-
- 24 Apr, 2020 2 commits
-
-
John Kessenich authored
-
John Kessenich authored
-
- 23 Apr, 2020 1 commit
-
-
pmistryNV authored
Enable below features for GL Core version 420: * layout qualifier "std430" * storage qualifier "buffer" * atomic memory functions
-
- 22 Apr, 2020 1 commit
-
-
Phillip Stephens authored
-
- 21 Apr, 2020 1 commit
-
-
MennoVink authored
-
- 20 Apr, 2020 1 commit
-
-
pmistryNV authored
-
- 17 Apr, 2020 1 commit
-
-
pmistryNV authored
-
- 14 Apr, 2020 1 commit
-
-
Cody Northrop authored
Swizzled out operands were added in bbbd9a2a. This was sufficient for most tests, but we ran into problems with umulExtended and imulExtended, which have two. This CL converts the tracking values to vectors so multiple operands can be supported. Test: KHR-GLES31.core.shader_bitfield_operation.* Test: ctest
-
- 13 Apr, 2020 1 commit
-
-
John Kessenich authored
-
- 10 Apr, 2020 1 commit
-
-
Malacath-92 authored
-