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