1. 89f8d1e HLSL: Fix #942: Map SV_TargetN to SPV Location N. by John Kessenich · 7 years ago
  2. c44b95f WIP: HLSL: handle clip/cull distance array semantic matching by LoopDawg · 7 years ago
  3. 54596ff HLSL: Force flat (nointerp) onto integer fragment inputs. by John Kessenich · 7 years ago
  4. 82ae8c3 HLSL: Fix #924: Convert between two different arrays with cast. by John Kessenich · 7 years ago
  5. 9b2531b Infrastructure: Move nesting counters, etc., to base class. by John Kessenich · 7 years ago
  6. f315074 HLSL: Convert run-time sampler assignments to compile-time aliases. by John Kessenich · 7 years ago
  7. 750c2d0 SPV: When passing structs of opaque types, flatten and pass the members instead. by John Kessenich · 7 years ago
  8. 24e895b Merge pull request #860 from steve-lunarg/sb-counter-args.2 by John Kessenich · 7 years ago
  9. 2bb1f39 WIP: HLSL: add ability to pass struct buffers with counters to fns by steve-lunarg · 7 years ago
  10. 0a2a0cd HLSL: Implement member functions calling member functions. by John Kessenich · 7 years ago
  11. a4bfed1 WIP: track declared builtin type [proposal] by steve-lunarg · 7 years ago
  12. 726bf96 HLSL: add .mips[][] operator for texture types by LoopDawg · 7 years ago
  13. f1709e7 HLSL: implement [unroll] and [loop] attributes by steve-lunarg · 7 years ago
  14. d4d0b29 HLSL: add standard sample position return form of GetSamplePosition method by steve-lunarg · 7 years ago
  15. f8203a0 HLSL: cast non-int types to uint on Load/Store indexes by steve-lunarg · 7 years ago
  16. 8e26feb WIP: HLSL: structuredbuffer counter functionality by steve-lunarg · 7 years ago
  17. 636b62d HLSL: Support vector 'cond ? :' -> EOpMix -> OpSelect. by John Kessenich · 7 years ago
  18. ccb076a HLSL: allow non-vec3 tessellation coordinate declarations by steve-lunarg · 7 years ago
  19. 82460b5 HLSL: Fix #805: Support cast of scalars to structures. by John Kessenich · 7 years ago
  20. c633f64 HLSL: Non-functional: rationalize making constructors. by John Kessenich · 7 years ago
  21. 067eb9b WIP: HLSL: Support InputPatch variables in patch constant functions by steve-lunarg · 7 years ago
  22. 08e0c08 HLSL: fix GS implementation for EP wrapping by steve-lunarg · 7 years ago
  23. 84a30c8 Merge pull request #774 from steve-lunarg/tess-ctrlpt-pcf by John Kessenich · 7 years ago
  24. e741249 HLSL: pass tessellation execution modes through to SPIR-V by steve-lunarg · 7 years ago
  25. 7e997e2 HLSL: Implicit bool conversions for conditional expressions and related. by John Kessenich · 7 years ago
  26. e752f46 HLSL: HS return is arrayed to match SPIR-V semantics by steve-lunarg · 7 years ago
  27. 194f0f3 HLSL: require tessellation factors to be fixed size arrays by steve-lunarg · 8 years ago
  28. 4dc835c Non-functional: Round of adding 'const', related to more efficient getFullNamespaceName(). by John Kessenich · 7 years ago
  29. 000c818 HLSL: Allow use of $Global members in between function calls. by John Kessenich · 7 years ago
  30. 3778979 HLSL: non-static member functions: track and find active anonymous 'this' scopes and members. by John Kessenich · 8 years ago
  31. f4ba25e HLSL: Non-functional: the symbol field of a token was in practice unused; remove it. by John Kessenich · 8 years ago
  32. e7d0752 HLSL: use prefix for builtin functions names to avoid namespace collisions by steve-lunarg · 8 years ago
  33. f3d88bd HLSL non-functional: Generalize namespace nesting. by John Kessenich · 8 years ago
  34. 2dd643f Merge branch 'TiemoJung-semantic_handling' by John Kessenich · 8 years ago
  35. 088d52b HLSL: Non-functional: consolidate function declarator information. by John Kessenich · 8 years ago
  36. 54ee28f HLSL: Add scoping operator, accept static member functions, and support calling them. by John Kessenich · 8 years ago
  37. 5f12d2f HLSL: non-functional: simplify handleBuiltInMethod() to isBuiltInMethod(). by John Kessenich · 8 years ago
  38. 6e1d50a HLSL: Accept SV_Cull/ClipDistanceN, by refactoring the way semantics are mapped. by John Kessenich · 8 years ago
  39. 88e88e5 HLSL: Non-functional: Remove dead .length() code. by John Kessenich · 8 years ago
  40. 516d92d HLSL: Non-functional: Drive existing method recognition by syntax, not by name. by John Kessenich · 8 years ago
  41. 854fe24 HLSL: Fix #747: accept 'struct' in front of previously user-defined type name. by John Kessenich · 8 years ago
  42. dd8287a WIP: HLSL: add structuredbuffer pass by reference in fn params by steve-lunarg · 8 years ago
  43. 5da1f03 HLSL: implement 4 (of 6) structuredbuffer types by steve-lunarg · 8 years ago
  44. 858c928 Add basic HS/DS implementation. by steve-lunarg · 8 years ago
  45. dd40260 HLSL: don't do a deepCopy() for typedef, as we still want to share the type graph. by John Kessenich · 8 years ago
  46. 65ee230 HLSL: Add tests and refine what decorations are passed through per stage/in/out. by John Kessenich · 8 years ago
  47. bf47286 HLSL: Move to fine-grained control for defining input/output/uniform IO types. by John Kessenich · 8 years ago
  48. 727b374 HLSL: Build IO types bottom up, as parsed, and cache the original (IO). by John Kessenich · 8 years ago
  49. 88c4464 HLSL: Have loose uniforms also go through the makeTypeNonIo() path. by John Kessenich · 8 years ago
  50. abd8dca HLSL: Make the entry-point shadow function have non-IO params and return. by John Kessenich · 8 years ago
  51. 5d3023a HLSL: Type sanitization: create non-IO types for var decl and fn param/ret by steve-lunarg · 8 years ago
  52. 02467d8 HLSL: Wrap the entry-point; need to write 'in' args, and support 'inout' args. by John Kessenich · 8 years ago
  53. 94dfb7a Non-functional: Factor out entry-point logic from handleFunctionDefinition(). by John Kessenich · 8 years ago
  54. c142c88 Front-ends: Non-functional: Rationalize vector and matrix swizzles. by John Kessenich · 8 years ago
  55. fdf6347 HLSL: Add EOpMatrixSwizzle, selectively decomposed to other ops, for issue #670. by John Kessenich · 8 years ago
  56. 001dfa1 HLSL: matrix swizzle (_12, _m23) syntax, partial semantics. by John Kessenich · 8 years ago
  57. 7d39ad5 Mark an overriden method in a subclass with ‘override’. by Alex Szpakowski · 8 years ago
  58. 927608b Non-functional: White space after "//", mostly for copyrights. by John Kessenich · 8 years ago
  59. ecba76f Non-Functional: Whitespace, comments, replace accidentally deleted comment. by John Kessenich · 8 years ago
  60. ddfbbe2 Merge pull request #632 from steve-lunarg/structure-splitting by John Kessenich · 8 years ago
  61. c4ed950 Merge pull request #647 from steve-lunarg/default-fn-params by John Kessenich · 8 years ago
  62. aa6d562 HLSL: Handle const with no initializer. Fixes issue #651. by John Kessenich · 8 years ago
  63. 26d3145 HLSL default function parameters by steve-lunarg · 8 years ago
  64. 132d331 HLSL: struct splitting: assignments of hierarchical split types by steve-lunarg · 8 years ago
  65. a2e7531 HLSL: inter-stage structure splitting. by steve-lunarg · 8 years ago
  66. 9a931b3 Fix a large number of warnings about inconsistent usage of 'override' produced by clang by Henrik Rydgård · 8 years ago
  67. 1e275c8 HLSL: More robust handling of bad shader input, catching a few more things. by John Kessenich · 8 years ago
  68. a2b01a0 HLSL: Recursive composite flattening by steve-lunarg · 8 years ago
  69. 21b11f4 Merge branch 'intrinsic-promotion' of https://github.com/steve-lunarg/glslang into steve-lunarg-intrinsic-promotion by John Kessenich · 8 years ago
  70. f1e0c87 allow renaming of shader entry point when creating SPIR-V by steve-lunarg · 8 years ago
  71. 8ce6e2b Fix non-Windows build error. by John Kessenich · 8 years ago
  72. f97f2ce HLSL: Support the constructor idiom "(struct type)0". by John Kessenich · 8 years ago
  73. 98ad485 HLSL: Support {...} initializer lists that are too short. by John Kessenich · 8 years ago
  74. 517fe7a Non-functional: Rename some entry-point variables to entryPoint, not main. by John Kessenich · 8 years ago
  75. ef33ec0 HLSL: add intrinsic function implicit promotions by steve-lunarg · 8 years ago
  76. f49cdf4 WIP: HLSL: Add GS support by steve-lunarg · 8 years ago
  77. d3f1122 Whole stack: Fix stale types in the AST linker object nodes, fixing #557. by John Kessenich · 8 years ago
  78. 1868b14 HLSL: implement numthreads for compute shaders by steve-lunarg · 8 years ago
  79. 4f2da27 HLSL: phase 3a: Add sub-vec4 rwtexture formats (qualifier.layoutFormat) by steve-lunarg · 8 years ago
  80. 0de16da HLSL: phase 2c: use lValueErrorCheck in HLSL FE by steve-lunarg · 8 years ago
  81. 9070796 HLSL: phase 2b: add l-value operator[] for RWTexture/RWBuffer by steve-lunarg · 8 years ago
  82. 6b43d27 HLSL: phase 2a: add r-value operator[] for RWTexture/RWBuffer by steve-lunarg · 8 years ago
  83. de97fe0 Non-functional: Rationalizing parse helper hierarchy, step 3 (effected editable symbols and IO resize). by John Kessenich · 8 years ago
  84. a2a5dd4 Non-functional: Rationalizing parse helper hierarchy, step 2 (effected error messaging and cascading errors). by John Kessenich · 8 years ago
  85. 6dbc0a7 Support a uniform block to hold global uniform variables. by John Kessenich · 8 years ago
  86. e82061d HLSL: Rationalize combination of type arrayness and name arrayness. by John Kessenich · 8 years ago
  87. e0b9deb Flatten uniform arrays by steve-lunarg · 8 years ago
  88. a1e2d49 HLSL: Move to correct parsing of annotations, improving all annotations and recent string grammar. by John Kessenich · 8 years ago
  89. 6fccb3c Non-functional: Sweep through the stack for consistent with "main" and entry point. by John Kessenich · 8 years ago
  90. f911500 HLSL: Non-functional; make flatten semantics be about aggregates, not just structures. by John Kessenich · 8 years ago
  91. 34e7ee7 HLSL: Improve setting and testing of interpolation qualifiers. by John Kessenich · 8 years ago
  92. d21baed HLSL: Flatten whole-struct assigns and returns when targeting flattened I/O structs. by John Kessenich · 8 years ago
  93. 7dc630f HLSL: Flatten a return struct from an entry point and assign locations after flattening. by John Kessenich · 8 years ago
  94. cd0a78a HLSL: Flatten vertex input and fragment output structures. by John Kessenich · 8 years ago
  95. cfd7ce8 HLSL: Support register(..., spaceN) for setting the descriptor set. by John Kessenich · 8 years ago
  96. 7735b94 HLSL Non-Functional: Move to more robust capturing of postDecls into a qualifier. by John Kessenich · 8 years ago
  97. 07350f3 HLSL: Handle "fake" entry points, by undoing their built-in variable declarations. by John Kessenich · 8 years ago
  98. a305166 HLSL: Error if funcion with return type doesn't return a value. by John Kessenich · 8 years ago
  99. 5e56423 Front-ends: Remove now defunct afterEOF and related, use scanner's instead. by John Kessenich · 8 years ago
  100. 830b0cc HLSL: Start location numbering with the entry-point return value. by John Kessenich · 8 years ago