- 0fca0ba WIP: HLSL: support global const initializers from non-constant rvalues by LoopDawg · 7 years ago
- 9645f78 Merge pull request #965 from chaoc/spv-khr-post-depth-coverage by John Kessenich · 7 years ago
- c120452 Implement SPV_KHR_post_depth_coverage by chaoc · 7 years ago
- 57a2b22 Update CMakeLists.txt by d3x0r · 7 years ago
- 0fbe02c Implement extensions GL_OVR_multiview and GL_OVR_multiview2 by David Srbecký · 7 years ago
- 37cdcee Implement extension GL_ARB_shader_stencil_export by Rex Xu · 7 years ago
- 89f8d1e HLSL: Fix #942: Map SV_TargetN to SPV Location N. by John Kessenich · 7 years ago
- fe6689c HLSL: support point mode. by John Kessenich · 7 years ago
- c44b95f WIP: HLSL: handle clip/cull distance array semantic matching by LoopDawg · 7 years ago
- 4329d55 HLSL: Broaden solution for #940, editing integer input for 'flat'. by John Kessenich · 7 years ago
- e271312 HLSL: fix several issues in mat construction from scalars by LoopDawg · 7 years ago
- 82ae8c3 HLSL: Fix #924: Convert between two different arrays with cast. by John Kessenich · 7 years ago
- cabbb78 Implement extension GL_AMD_gpu_shader_int16 by Rex Xu · 8 years ago
- 4d5bcd3 HLSL: Allow macro expansions to create the 'defined' operator. by John Kessenich · 7 years ago
- 225e0fc Implement the extension GL_AMD_texture_gather_bias_lod by Rex Xu · 8 years ago
- 0b94a31 Merge pull request #915 from LoopDawg/subvec4-intrinsic by John Kessenich · 7 years ago
- f315074 HLSL: Convert run-time sampler assignments to compile-time aliases. by John Kessenich · 7 years ago
- 750c2d0 SPV: When passing structs of opaque types, flatten and pass the members instead. by John Kessenich · 7 years ago
- d66c5b1 HLSL: iomapper: Fix #914. Tolerate user aliasing of bindings. by John Kessenich · 7 years ago
- a696fd1 HLSL: add test coverage for sub-vec4 texture intrinsics by LoopDawg · 7 years ago
- baf570e Pure Texture to Sampled Texture Transform by t.jung · 8 years ago
- d6af18f Merge pull request #901 from LoopDawg/imat-construct by John Kessenich · 7 years ago
- 6e2295d HLSL: Fix #902: Incorrect protection against zero arguments. by John Kessenich · 7 years ago
- 174ccb8 HLSL: Add imat, umat, and bmat constructors by LoopDawg · 7 years ago
- 132a28a HLSL: allow name mangling based on texture template type by LoopDawg · 7 years ago
- ab0847e Merge pull request #896 from KhronosGroup/spv-location by John Kessenich · 7 years ago
- 65c2eed Remapper: handle embedded opcode in OpSpecConstantOp by LoopDawg · 7 years ago
- 71facdf SPV: Give error on not assigning locations to I/O. by John Kessenich · 7 years ago
- 24e895b Merge pull request #860 from steve-lunarg/sb-counter-args.2 by John Kessenich · 7 years ago
- 2bb1f39 WIP: HLSL: add ability to pass struct buffers with counters to fns by steve-lunarg · 8 years ago
- 0a2a0cd HLSL: Implement member functions calling member functions. by John Kessenich · 7 years ago
- 726bf96 HLSL: add .mips[][] operator for texture types by LoopDawg · 7 years ago
- c6510a3 HLSL: allow GS-specific methods in other stages by LoopDawg · 7 years ago
- 02c4728 Merge pull request #874 from xlpiao/DescriptorSet-and-Binding by John Kessenich · 8 years ago
- 36dc829 HLSL: Manually configure descriptor set and binding number for resources by Hyangran Park · 8 years ago
- c10191d SPV: Support texelFetch() on a textureBuffer (no sampler). by John Kessenich · 8 years ago
- f1709e7 HLSL: implement [unroll] and [loop] attributes by steve-lunarg · 8 years ago
- 22afc38 Modernise CMake #2 by David Seifert · 8 years ago
- cfc69d9 Revert "Modernise CMake" by John Kessenich · 8 years ago
- 8f82426 Make test suite optional by using CTest by David Seifert · 8 years ago
- 5a5699b Modernise CMake by David Seifert · 8 years ago
- c0043cd HLSL: Allow empty struct initializers by steve-lunarg · 8 years ago
- a766b83 HLSL: Add ConstantBuffer<T> syntax by steve-lunarg · 8 years ago
- 3cbc32f HLSL: add error for expected comparison sampler in SampleCmp* ops by steve-lunarg · 8 years ago
- 0603a38 Merge pull request #847 from steve-lunarg/sb-param-fix by John Kessenich · 8 years ago
- e404e08 HLSL: fix for byte address buffers in fn parmeters by steve-lunarg · 8 years ago
- f8203a0 HLSL: cast non-int types to uint on Load/Store indexes by steve-lunarg · 8 years ago
- 6702718 SPV: Support test #pragma for generating the StorageBuffer storage class. by John Kessenich · 8 years ago
- 12bc9aa WIP: HLSL: add Append/ConsumeBuffer support by steve-lunarg · 8 years ago
- 8e26feb WIP: HLSL: structuredbuffer counter functionality by steve-lunarg · 8 years ago
- 97366a0 HLSL: Fix #770: implicitly convert bool operands to numeric operators. by John Kessenich · 8 years ago
- a0c578a HLSL: Fix #758: Support character literals (except for numeric escape sequences). by John Kessenich · 8 years ago
- 776c515 HLSL: Support 1.#INF and -1.#INF syntax. by John Kessenich · 8 years ago
- 2efd6c6 HLSL: cast bracket dereference index to int type if not. by steve-lunarg · 8 years ago
- ccb076a HLSL: allow non-vec3 tessellation coordinate declarations by steve-lunarg · 8 years ago
- 82460b5 HLSL: Fix #805: Support cast of scalars to structures. by John Kessenich · 8 years ago
- 5ce1e4a Merge pull request #817 from steve-lunarg/isfinite by John Kessenich · 8 years ago
- 1397552 Decompose OpIsFinite to avoid capability restrictions by steve-lunarg · 8 years ago
- 067eb9b WIP: HLSL: Support InputPatch variables in patch constant functions by steve-lunarg · 8 years ago
- f38cca3 HLSL: handle PCF input to DS in arbitrary argument position by steve-lunarg · 8 years ago
- 84a30c8 Merge pull request #774 from steve-lunarg/tess-ctrlpt-pcf by John Kessenich · 8 years ago
- db2e3b4 HLSL: fix crash on empty sequence node passed to intrinsic expansions by steve-lunarg · 8 years ago
- e741249 HLSL: pass tessellation execution modes through to SPIR-V by steve-lunarg · 8 years ago
- 9ce7655 Merge pull request #797 from steve-lunarg/scalar-length by John Kessenich · 8 years ago
- 18958f6 HLSL: Fix #802: Preserve promoted child under ! operator. by John Kessenich · 8 years ago
- 7e997e2 HLSL: Implicit bool conversions for conditional expressions and related. by John Kessenich · 8 years ago
- 8f9fdc9 HLSL: Add namespace grammar and some basic semantics. by John Kessenich · 8 years ago
- 9cee73e HLSL: support per control point patch const fn invocation by steve-lunarg · 8 years ago
- 86e49d1 HLSL: Move frexp() to a separate test file. by Rex Xu · 8 years ago
- 0e73784 Fix #790: Don't emit NV-specific interface members unless enabled by extension. by John Kessenich · 8 years ago
- 1ca04c2 HLSL: allow length() on scalars by steve-lunarg · 8 years ago
- d8e34c5 HLSL: fix crash on empty struct return from entry point by steve-lunarg · 8 years ago
- 7a41f96 HLSL: Implement 'this' keyword. by John Kessenich · 8 years ago
- 4960baa HLSL: Basic turn on of non-static member functions. by John Kessenich · 8 years ago
- 54ee28f HLSL: Add scoping operator, accept static member functions, and support calling them. by John Kessenich · 8 years ago
- 6e1d50a HLSL: Accept SV_Cull/ClipDistanceN, by refactoring the way semantics are mapped. by John Kessenich · 8 years ago
- d00b026 Enable GatherCmpRed. Green/Blue/Alpha cannot be supported. by steve-lunarg · 8 years ago
- 33f85b6 SPV: Allow push constant buffers to not have an instance name. by John Kessenich · 8 years ago
- 854fe24 HLSL: Fix #747: accept 'struct' in front of previously user-defined type name. by John Kessenich · 8 years ago
- 69a2c69 Merge pull request #736 from steve-lunarg/structbuffer-params by John Kessenich · 8 years ago
- 86b510e WIP: HLSL: add f16tof32 and f32tof16 decompositions. by steve-lunarg · 8 years ago
- 6c8aaac SPV: Implement new extensions GL_KHX_device_group and GL_KHX_multiview. by John Kessenich · 8 years ago
- dd8287a WIP: HLSL: add structuredbuffer pass by reference in fn params by steve-lunarg · 8 years ago
- 4a57dce SPV: Handle nested opaque types as function parameters. by John Kessenich · 8 years ago
- 932bb5c Add reflection queries for thread local size and ssbo auto-binding by steve-lunarg · 8 years ago
- 5da1f03 HLSL: implement 4 (of 6) structuredbuffer types by steve-lunarg · 8 years ago
- df3956c Implement NVX_multiview_per_view_attributes by chaoc · 8 years ago
- 858c928 Add basic HS/DS implementation. by steve-lunarg · 8 years ago
- 65ee230 HLSL: Add tests and refine what decorations are passed through per stage/in/out. by John Kessenich · 8 years ago
- ec712eb HLSL: fix copies between arrays of structs of builtins, and arrayed builtins. by steve-lunarg · 8 years ago
- 0fe106a AST: Have type deepCopy() preserve type graphs as graphs. by John Kessenich · 8 years ago
- 02467d8 HLSL: Wrap the entry-point; need to write 'in' args, and support 'inout' args. by John Kessenich · 8 years ago
- 7b89e75 Use correct OriginUpperLeft when linking more than one shader. by Markus Tavenrath · 8 years ago
- 771d89f support SPV_NV_viewport_array2 and SPV_NV_stereo_view_rendering by chaoc · 8 years ago
- 22f25d8 Merge pull request #682 from steve-lunarg/split-copy-fix by John Kessenich · 8 years ago
- 65cdff9 HLSL: fix dereferencing when copying split structures with arrays by steve-lunarg · 8 years ago
- 430ef40 Implement new revision of extension GL_AMD_shader_ballot by Rex Xu · 8 years ago
- 001dfa1 HLSL: matrix swizzle (_12, _m23) syntax, partial semantics. by John Kessenich · 8 years ago
- dc1a819 Infrastructure: Support standard build with ENABLE_HLSL set to off. by John Kessenich · 8 years ago
- facde2c PP #include: address PR feedback. by John Kessenich · 8 years ago