1. 27ffb29 HLSL: Add 'class' keyword as (so far) synonym for 'struct'. by John Kessenich · 8 years ago
  2. 854fe24 HLSL: Fix #747: accept 'struct' in front of previously user-defined type name. by John Kessenich · 8 years ago
  3. efeefd9 Build: Another fix for issue #718: implement the hidden methods of tFinalize. by John Kessenich · 8 years ago
  4. dd8287a WIP: HLSL: add structuredbuffer pass by reference in fn params by steve-lunarg · 8 years ago
  5. 5da1f03 HLSL: implement 4 (of 6) structuredbuffer types by steve-lunarg · 8 years ago
  6. 858c928 Add basic HS/DS implementation. by steve-lunarg · 8 years ago
  7. f8d0d8c Address issue #718. Should change which warning is generated, hopefully to a better one. by John Kessenich · 8 years ago
  8. 727b374 HLSL: Build IO types bottom up, as parsed, and cache the original (IO). by John Kessenich · 8 years ago
  9. 02467d8 HLSL: Wrap the entry-point; need to write 'in' args, and support 'inout' args. by John Kessenich · 8 years ago
  10. 18adbdb Resolve issue #700: allow initializers on struct members. by John Kessenich · 8 years ago
  11. 32fd5d2 Memory/constructor/warning clean-up. Addresses issue #705. by John Kessenich · 8 years ago
  12. 927608b Non-functional: White space after "//", mostly for copyrights. by John Kessenich · 8 years ago
  13. ecba76f Non-Functional: Whitespace, comments, replace accidentally deleted comment. by John Kessenich · 8 years ago
  14. bf9a2f3 Merge pull request #648 from steve-lunarg/type-identifiers by John Kessenich · 8 years ago
  15. ddfbbe2 Merge pull request #632 from steve-lunarg/structure-splitting by John Kessenich · 8 years ago
  16. 26d3145 HLSL default function parameters by steve-lunarg · 8 years ago
  17. 5ca85ad HLSL: allow scalar type keywords as identifiers, and add half type support. by steve-lunarg · 8 years ago
  18. 132d331 HLSL: struct splitting: assignments of hierarchical split types by steve-lunarg · 8 years ago
  19. a64ed3e HLSL: allow "sample" in expressions. by steve-lunarg · 8 years ago
  20. a2b01a0 HLSL: Recursive composite flattening by steve-lunarg · 8 years ago
  21. f1e0c87 allow renaming of shader entry point when creating SPIR-V by steve-lunarg · 8 years ago
  22. 98ad485 HLSL: Support {...} initializer lists that are too short. by John Kessenich · 8 years ago
  23. e122f05 Merge pull request #599 from steve-lunarg/gs by John Kessenich · 8 years ago
  24. f49cdf4 WIP: HLSL: Add GS support by steve-lunarg · 8 years ago
  25. 75fd223 HLSL: allow "sample" as a valid identifier. by steve-lunarg · 8 years ago
  26. a22f7db HLSL: Allow expressions in attributes by steve-lunarg · 8 years ago
  27. 89df3c2 Merge pull request #572 from steve-lunarg/numthreads by John Kessenich · 8 years ago
  28. 3226b08 HLSL: Add min*{float,int,uint} types by steve-lunarg · 8 years ago
  29. 1868b14 HLSL: implement numthreads for compute shaders by steve-lunarg · 8 years ago
  30. e5921f1 HLSL: Fix unary and binary operator type conversion issues by steve-lunarg · 8 years ago
  31. bf8a6ef Merge pull request #551 from steve-lunarg/rwbuffers-fmt by John Kessenich · 8 years ago
  32. 062b239 Merge pull request #549 from steve-lunarg/multidim-array by John Kessenich · 8 years ago
  33. 8b0227c HLSL: phase 3b: Texture methods remember and return vector size. by steve-lunarg · 8 years ago
  34. 4f2da27 HLSL: phase 3a: Add sub-vec4 rwtexture formats (qualifier.layoutFormat) by steve-lunarg · 8 years ago
  35. 7b211a3 HLSL: allow multi-dimensional arrays by steve-lunarg · 8 years ago
  36. 07830e8 HLSL: phase 2d: minor cleanup, & allow operator[] on non-rw textures by steve-lunarg · 8 years ago
  37. 9070796 HLSL: phase 2b: add l-value operator[] for RWTexture/RWBuffer by steve-lunarg · 8 years ago
  38. bb0183f HLSL: phase 1: add RWTexture and RWBuffer by steve-lunarg · 8 years ago
  39. f571d0c Non-functional: Use isOpaque() instead of compare against EbtSampler. by John Kessenich · 8 years ago
  40. 6dbc0a7 Support a uniform block to hold global uniform variables. by John Kessenich · 8 years ago
  41. e82061d HLSL: Rationalize combination of type arrayness and name arrayness. by John Kessenich · 8 years ago
  42. 265c061 HLSL: allow implicit array sizing. by steve-lunarg · 8 years ago
  43. 10f7fc7 HLSL: Reverse what the driver is told about row/column majorness, matching the row-column reversal. by John Kessenich · 8 years ago
  44. a1e2d49 HLSL: Move to correct parsing of annotations, improving all annotations and recent string grammar. by John Kessenich · 8 years ago
  45. 86f7138 HLSL: Add string basic type and recognize string declaration grammar. by John Kessenich · 8 years ago
  46. 34e7ee7 HLSL: Improve setting and testing of interpolation qualifiers. by John Kessenich · 8 years ago
  47. d21baed HLSL: Flatten whole-struct assigns and returns when targeting flattened I/O structs. by John Kessenich · 8 years ago
  48. 297ae21 WIP: HLSL: Treat HLSL rows as GLSL columns. by steve-lunarg · 8 years ago
  49. cfd7ce8 HLSL: Support register(..., spaceN) for setting the descriptor set. by John Kessenich · 8 years ago
  50. e3218e2 HLSL: Accept layout(...) also as a post-decl. Issue #454. by John Kessenich · 8 years ago
  51. 7735b94 HLSL Non-Functional: Move to more robust capturing of postDecls into a qualifier. by John Kessenich · 8 years ago
  52. b804de6 HLSL: Track binding numbers to struct instances; fixes issue #496. by John Kessenich · 8 years ago
  53. 841db35 HLSL: Fix issue #442, smear and truncate shape conversions for == and !=. by John Kessenich · 8 years ago
  54. 9e07953 HLSL: Handle greater/less depth modes. Fixes issue #489. by John Kessenich · 8 years ago
  55. a305166 HLSL: Error if funcion with return type doesn't return a value. by John Kessenich · 8 years ago
  56. 1a4b775 HLSL: Correct line numbers for function definitions. by John Kessenich · 8 years ago
  57. 81d4714 Merge branch 'HLSL_Semantic_Mapping' of https://github.com/dankbaker/glslang into dankbaker-HLSL_Semantic_Mapping by John Kessenich · 8 years ago
  58. b9e3912 HLSL: Partially address issue #463: accept GLSL layout(...). by John Kessenich · 8 years ago
  59. c4a1307 HLSL: add implicit promotions for assignments and function returns. by steve-lunarg · 8 years ago
  60. 267590d Whitespace: Nonfunctional: fix inconsistent white space, esp. no tabs. by John Kessenich · 8 years ago
  61. c7e5016 Commenting out attempt to parse DX9 samplers, since this is imcompatible with DX10+ shaders by Dan Baker · 8 years ago
  62. cb88de5 HLSL: allow semicolons between global scope declarations. by steve-lunarg · 8 years ago
  63. fe5a3ff HLSL: allow trailing commas in initializer lists & scalar initialization by steve-lunarg · 8 years ago
  64. b38f071 HLSL: Add back in the [subcomponent] part of a 'register' decl. by John Kessenich · 8 years ago
  65. 5964c64 HLSL: Fix a grammar error related to constructors in parenthetical expressions by steve-lunarg · 8 years ago
  66. 96e9f47 HLSL: Implement the register production. by John Kessenich · 8 years ago
  67. 82d6baf HLSL: Implement packoffset production. by John Kessenich · 8 years ago
  68. 64076ed HLSL: Fix binary-expression associativity and termination issue. by John Kessenich · 8 years ago
  69. fea226b HLSL: Add shape conversions for scalar -> vector assigments. by John Kessenich · 8 years ago
  70. c552aec Merge pull request #417 from steve-lunarg/buffers by John Kessenich · 8 years ago
  71. 2de3291 HLSL: allow uint literals, and add test for numeric suffixes by steve-lunarg · 8 years ago
  72. d53f717 HLSL: add Buffer support for Load method by steve-lunarg · 8 years ago
  73. 00957f8 HLSL: Implement ?: grammar productions. by John Kessenich · 8 years ago
  74. b783d71 HLSL: Report failed assignments; some were silently not happening. by John Kessenich · 8 years ago
  75. 3d157c5 HLSL: cbuffer and tbuffer grammar and production. by John Kessenich · 8 years ago
  76. a78b029 HLSL: Add SampleCmp and SampleCmpLevelZero texture methods by LoopDawg · 8 years ago
  77. 5d58fae HLSL: Add tx.GetDimensions method (uint returns only) by LoopDawg · 8 years ago
  78. e4821e4 Build: Fix three new warnings in HLSL code. by John Kessenich · 8 years ago
  79. 9249c70 HLSL: add in/out/inout qualifiers. by LoopDawg · 8 years ago
  80. 4886f69 HLSL: Sampler/texture declarations, method syntax, partial Sample method by LoopDawg · 8 years ago
  81. 5e69ec6 HLSL: Add typedef grammar and production. by John Kessenich · 8 years ago
  82. d5ed0b6 HLSL: Mostly non-functional: simplify, rationalize, and generalize the declaration grammar. by John Kessenich · 8 years ago
  83. 0735424 HLSL: Grammar: Recognize { } style initializers for composites. by John Kessenich · 8 years ago
  84. b0a63f5 HLSL: Correctly identify which variables are global storage class. by John Kessenich · 8 years ago
  85. 532543c HLSL: Grammar: Make comma-separated declaration lists work. by John Kessenich · 8 years ago
  86. 6daaa4f HLSL: Add template style constructors for vector & matrix types by LoopDawg · 8 years ago
  87. d02dc5d HLSL: Implement switch/case/default. by John Kessenich · 8 years ago
  88. 5bc4d9a HLSL: Airplane work: break/continue/discard grammar, and decls for for/if/while. by John Kessenich · 8 years ago
  89. 19b92ff HLSL: Basic array grammar. by John Kessenich · 8 years ago
  90. 93a162a HLSL: Handle "." for structure dereference and swizzle. by John Kessenich · 8 years ago
  91. 5aa59e2 HLSL: Map parameter qualifiers from generic to function-specific and entry-point specific. by John Kessenich · 8 years ago
  92. c3387d3 HLSL: Support semantics in function parameter declarations. by John Kessenich · 8 years ago
  93. 630dd7d HLSL: Flesh out misc. declaration grammar: semantics/registers/annotations/precise/etc. by John Kessenich · 8 years ago
  94. e6e7494 HLSL: Implement basic "struct" grammar. by John Kessenich · 8 years ago
  95. 077e052 HLSL: Implement proper nesting of symbol-table scopes and identifier searching. by John Kessenich · 8 years ago
  96. 71351de HLSL: Add all int/float/bool/uint matrix types, void for functions, and a few others. by John Kessenich · 8 years ago
  97. 119f8f6 HLSL: Flesh out the loop grammar and productions. by John Kessenich · 8 years ago
  98. 0d2b6de HLSL: Attribute grammar and if-else grammar/productions. by John Kessenich · 8 years ago
  99. 21472ae HLSL: Finish skeletan of the "statement" grammar. by John Kessenich · 8 years ago
  100. 1cc1a28 HLSL: 1) Implement lookahead buffers/stacks for token advance/recede, 2) use it for cast operation. by John Kessenich · 8 years ago