1. e0b9deb Flatten uniform arrays by steve-lunarg · 8 years ago
  2. 6714bcc HLSL: Fix result type of passing a flattened-aggregate to a function. by John Kessenich · 8 years ago
  3. 6873f3d Merge pull request #514 from steve-lunarg/binding-map-3 by John Kessenich · 8 years ago
  4. 7f7c2ed HLSL: Add location offsets per resource type by steve-lunarg · 8 years ago
  5. a1e2d49 HLSL: Move to correct parsing of annotations, improving all annotations and recent string grammar. by John Kessenich · 8 years ago
  6. 2572b19 HLSL: Turn on reflection, with basic test file, to catch regressions. by John Kessenich · 8 years ago
  7. 6b71c40 HLSL: Remove extraneous built-in member decorations for IO structs used in non-IO situations. by John Kessenich · 8 years ago
  8. 86f7138 HLSL: Add string basic type and recognize string declaration grammar. by John Kessenich · 8 years ago
  9. eee9d53 Track separate entry-point names and mangled names... by John Kessenich · 8 years ago
  10. 632f575 Merge pull request #512 from steve-lunarg/liveness-traverser by John Kessenich · 8 years ago
  11. 5571730 Refactor TLiveTraverser from the former reflection traverser, for future use in binding mapping. by steve-lunarg · 8 years ago
  12. 6fccb3c Non-functional: Sweep through the stack for consistent with "main" and entry point. by John Kessenich · 8 years ago
  13. 142785f HLSL: Change the final syntax-error printf to go to the infoLog. by John Kessenich · 8 years ago
  14. 28b2814 HLSL: Fix assert: ensure flattened shadow is EvqTemporary. by John Kessenich · 8 years ago
  15. 5159d4f HLSL: Intercept flatten aggregates passed to a function input, and copy member-by-member. by John Kessenich · 8 years ago
  16. f911500 HLSL: Non-functional; make flatten semantics be about aggregates, not just structures. by John Kessenich · 8 years ago
  17. fcea302 HLSL: Fix bug in previous checkin when non-flattened objects are not simple l-values. by John Kessenich · 8 years ago
  18. d2ce838 HLSL: Handle flatten for reads from flatten structs and parameter passing. by John Kessenich · 8 years ago
  19. 34e7ee7 HLSL: Improve setting and testing of interpolation qualifiers. by John Kessenich · 8 years ago
  20. d21baed HLSL: Flatten whole-struct assigns and returns when targeting flattened I/O structs. by John Kessenich · 8 years ago
  21. f8e494c HLSL: Flatten all input/output structs, regardless of stage. by John Kessenich · 8 years ago
  22. 7dc630f HLSL: Flatten a return struct from an entry point and assign locations after flattening. by John Kessenich · 8 years ago
  23. 7f70212 HLSL: return correct error when HLSL parsing fails. by John Kessenich · 8 years ago
  24. 315b6b9 Merge pull request #508 from amdrexu/bugfix by John Kessenich · 8 years ago
  25. 64b9743 SPV: Support simultaneous l-value swizzle and dynamic component selection. by Rex Xu · 8 years ago
  26. deb4940 HLSL: Register all entry-point in/out as part of the interface. by John Kessenich · 8 years ago
  27. b3e24e4 SPV: Fix issue #506: generalize struct deep copy to include arrays. by John Kessenich · 8 years ago
  28. cd0a78a HLSL: Flatten vertex input and fragment output structures. by John Kessenich · 8 years ago
  29. 6295c27 Merge pull request #505 from steve-lunarg/rowmajor-fix-2a by John Kessenich · 8 years ago
  30. 297ae21 WIP: HLSL: Treat HLSL rows as GLSL columns. by steve-lunarg · 8 years ago
  31. d403229 HLSL: Report an error if SPIR-V for Vulkan wasn't selected. by John Kessenich · 8 years ago
  32. a21187a Merge branch 'amdrexu-bugfix2' by John Kessenich · 8 years ago
  33. 4bfb32e Merge branch 'bugfix2' of https://github.com/amdrexu/glslang into amdrexu-bugfix2 by John Kessenich · 8 years ago
  34. 3152718 Merge pull request #503 from amdrexu/feature3 by John Kessenich · 8 years ago
  35. c9f3492 SPV: Use OpBitcast to implement 4 pack/unpack built-in functions. by Rex Xu · 8 years ago
  36. 99c4dd1 Preprocessor: UINT_MAX is translated to constant incorrectly. by Rex Xu · 8 years ago
  37. cfd7ce8 HLSL: Support register(..., spaceN) for setting the descriptor set. by John Kessenich · 8 years ago
  38. e3218e2 HLSL: Accept layout(...) also as a post-decl. Issue #454. by John Kessenich · 8 years ago
  39. 7735b94 HLSL Non-Functional: Move to more robust capturing of postDecls into a qualifier. by John Kessenich · 8 years ago
  40. b804de6 HLSL: Track binding numbers to struct instances; fixes issue #496. by John Kessenich · 8 years ago
  41. 58d2843 Merge pull request #498 from amdrexu/bugfix by John Kessenich · 8 years ago
  42. 64bcfdb Parser: Add 64-bit type conversion for specialization constant. by Rex Xu · 8 years ago
  43. 7d01bd6 HLSL: Handle swizzles on vectors of size 1. Addresses issue #453. by John Kessenich · 8 years ago
  44. 841db35 HLSL: Fix issue #442, smear and truncate shape conversions for == and !=. by John Kessenich · 8 years ago
  45. 07350f3 HLSL: Handle "fake" entry points, by undoing their built-in variable declarations. by John Kessenich · 8 years ago
  46. 9e07953 HLSL: Handle greater/less depth modes. Fixes issue #489. by John Kessenich · 8 years ago
  47. a305166 HLSL: Error if funcion with return type doesn't return a value. by John Kessenich · 8 years ago
  48. 1a4b775 HLSL: Correct line numbers for function definitions. by John Kessenich · 8 years ago
  49. 4bf7155 SPV: Flatten structs for copy when they are GLSL type aliases. by John Kessenich · 8 years ago
  50. 31207bc Merge pull request #495 from steve-lunarg/remapper-tests-2 by John Kessenich · 8 years ago
  51. 65564a4 Remapper: move remapper tests into the glslangtests executable. by steve-lunarg · 8 years ago
  52. f2b7f33 SPV: Tighten up number of struct-types declared based on decoration. by John Kessenich · 8 years ago
  53. 5e56423 Front-ends: Remove now defunct afterEOF and related, use scanner's instead. by John Kessenich · 8 years ago
  54. 830b0cc HLSL: Start location numbering with the entry-point return value. by John Kessenich · 8 years ago
  55. a05d8b5 HLSL: Remove recent change to put locations on SV_TARGET*. by John Kessenich · 8 years ago
  56. 510d83b HLSL: Create test results for the previous commits. by John Kessenich · 8 years ago
  57. 335fc28 Merge branch 'dankbaker-HLSL_Semantic_Mapping' by John Kessenich · 8 years ago
  58. 81d4714 Merge branch 'HLSL_Semantic_Mapping' of https://github.com/dankbaker/glslang into dankbaker-HLSL_Semantic_Mapping by John Kessenich · 8 years ago
  59. a88ef39 Merge pull request #490 from KhronosGroup/hlsl-output-return by John Kessenich · 8 years ago
  60. 6f220c0 HLSL: Setting SV_DEPTHGREATEREQUAL and SV_DEPTHLESSEQUAL to EbvFragDepth for now by Dan Baker · 8 years ago
  61. 6fd31fd Merge branch 'hlsl-output-return' of github.com:KhronosGroup/glslang into hlsl-output-return by John Kessenich · 8 years ago
  62. 6a70eb7 HLSL: Emulate write-to-output on return-from-entry-point, for return value. by John Kessenich · 8 years ago
  63. be2f6b0 HLSL: Emulate write-to-output on return-from-entry-point, for return value. by John Kessenich · 8 years ago
  64. 81cd764 Non-functional: Add some missing const, related to signature selection. by John Kessenich · 8 years ago
  65. 1389e3e Merge pull request #488 from antiagainst/c4996-warning by John Kessenich · 8 years ago
  66. 424cf80 Disable C4996 (secure CRT) recommendation on Windows for strtok(). by Lei Zhang · 8 years ago
  67. f00c245 Merge pull request #473 from steve-lunarg/remapper-tests by John Kessenich · 8 years ago
  68. e3f2c8f HLSL: Include shape-changing conversions in overloaded signature selection. by John Kessenich · 8 years ago
  69. 26aa8a4 HLSL: Format updates and some minor adjustments to SV_ handling by Dan Baker · 8 years ago
  70. 90dd70f HLSL: Allow arbitrary baseType -> baseType conversion of calling arguments. by John Kessenich · 8 years ago
  71. a845641 WIP: SPV Remapper: add remapper test framework by steve-lunarg · 8 years ago
  72. deec03c First stab at system value interpretation by Dan Baker · 8 years ago
  73. 4c3a7fd Merge pull request #483 from steve-lunarg/precise-fix-2 by John Kessenich · 8 years ago
  74. 36e87d0 HLSL: add precise keyword by steve-lunarg · 8 years ago
  75. fcc0aa3 HLSL: Switch to generic selector, but using GLSL #version 400 rules. by John Kessenich · 8 years ago
  76. ab89bbe Merge branch 'overloaded-400' of github.com:KhronosGroup/glslang by John Kessenich · 8 years ago
  77. 32c169d Front-end: Warn for likely missed change in default precisions. by John Kessenich · 8 years ago
  78. 54571c2 Vulkan: Have desktop shaders respect precision qualifiers. by John Kessenich · 8 years ago
  79. 4d53564 Front-End: Non-ES trigger for processing precision qualifiers. by John Kessenich · 8 years ago
  80. 219b025 Non-functional: Fix commit 98f164ec488f85af5a44b701477a34e810f2deb1. by John Kessenich · 8 years ago
  81. 98f164e Merge pull request #461 from dankbaker/Error_Message_Fixes_for_HLSL by John Kessenich · 8 years ago
  82. 6577a0e Merge pull request #476 from steve-lunarg/string-literals by John Kessenich · 8 years ago
  83. 3de0a6d Merge pull request #477 from amdrexu/bugfix by John Kessenich · 8 years ago
  84. 2bbbe06 SPV: Some group invocation operations should be applied to scalars. by Rex Xu · 8 years ago
  85. efe9724 HLSL: Add EHTokStringConstant, so that string attributes may be parsed by steve-lunarg · 8 years ago
  86. 3702348 Front-end: Add a function selector under implicit type conversion. by John Kessenich · 8 years ago
  87. afe6e9c HLSL and standalone, modifying Standalone to send filename as string source, and HLSL backend will use this to print a better error mesage when things fail by dankbaker · 8 years ago
  88. 0a04b4d Front-end/Non-functional: Add some const/auto, useful for upcoming changes. by John Kessenich · 8 years ago
  89. b9e3912 HLSL: Partially address issue #463: accept GLSL layout(...). by John Kessenich · 8 years ago
  90. 78a8b07 Merge pull request #471 from steve-lunarg/remapper-literal64-b by John Kessenich · 8 years ago
  91. 811d9f4 WIP: SPIRV remapper: allow 64 bit literals in OperandVariableLiteralId class iteration by steve-lunarg · 8 years ago
  92. 057c01e Merge pull request #467 from dankbaker/HLSL_Changing_defualt_language by John Kessenich · 8 years ago
  93. 2c646b7 Updating tests, sadly every single HLSL test needs updating becuase of the language identifier by Dan Baker · 8 years ago
  94. 55d5f2d HLSL: Changing SPIRV source language to unkown by Dan Baker · 8 years ago
  95. 15c0fbe Merge pull request #466 from baldurk/minor-msvc-warning-fix by John Kessenich · 8 years ago
  96. 1eb1c11 fix x64 warning about conversion size_t -> int by baldurk · 8 years ago
  97. 7fb6609 Merge pull request #458 from dneto0/revert-remap-64bit-patch by John Kessenich · 8 years ago
  98. b86e8b6 Revert "Merge pull request #456 from steve-lunarg/remapper-literal64" by David Neto · 8 years ago
  99. ad08b30 Merge pull request #456 from steve-lunarg/remapper-literal64 by John Kessenich · 8 years ago
  100. b249f2f SPIRV: allow 64 bit literals in OperandVariableLiteralId class iteration. by steve-lunarg · 8 years ago