| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-07-17 | loader:Remove dead code involving layer library queries now in manifest file | Jon Ashburn | |
| 2015-07-17 | loader: Update loader readme and add ICD/ layer discovery documentation | Jon Ashburn | |
| 2015-07-17 | loader: Use GetInstanceProcAddr rather than dlsym for most ICD entrypoints | Jon Ashburn | |
| Conflicts: loader/loader.c | |||
| 2015-07-17 | icd: Generate vkInstanceProcAddr with real entrypoints | Jon Ashburn | |
| 2015-07-17 | loader: use VkDevice when initializing device table | Courtney Goeltzenleuchter | |
| Had ICD that actually checked the device parameter at GetProcAddr and discovered we weren't using the device object. | |||
| 2015-07-17 | demos: Set size of uniform buffer in cube | Cody Northrop | |
| 2015-07-17 | demos: Remove reference to undefined variable | Courtney Goeltzenleuchter | |
| 2015-07-17 | misc: Create new glslang directory if needed | Courtney Goeltzenleuchter | |
| glslang has now moved to git. The update script will recreate the glslang folder if the existing one is the svn version. | |||
| 2015-07-17 | Updated BUILD.md to ref the specs on how the loader finds ICDs/layers. | Ian Elliott | |
| Since specifications now exist, those specs are pointed to instead of duplicated in this document. | |||
| 2015-07-17 | bug-14282: remove const | Courtney Goeltzenleuchter | |
| 2015-07-17 | Clean up warnings from release build | Tony Barbour | |
| 2015-07-17 | mem_tracker: Use device object for dispatch tables | Courtney Goeltzenleuchter | |
| Need to use the device object to lookup the right dispatch table now that WSI objects are non-dispatchable. | |||
| 2015-07-17 | mem_tracker: Don't try to copy data if none available | Courtney Goeltzenleuchter | |
| Check that call received data before trying to copy. | |||
| 2015-07-17 | Windows: Clean up more compiler errors and warnings | Tony Barbour | |
| 2015-07-17 | Windows: more changes for windows compiler | Tony Barbour | |
| 2015-07-17 | Windows: more fixes for windows compile | Tony Barbour | |
| 2015-07-17 | Windows: More windows compilier fixes | Tony Barbour | |
| 2015-07-17 | windows: clean up windows compile issues | Tony Barbour | |
| Conflicts: layers/object_track.h vk-layer-generate.py | |||
| 2015-07-17 | layers: Remove dead code. | Jeremy Hayes | |
| 2015-07-17 | layers: In MemTracker remove non-intercepted WSI funcs from GetProcAddr | Tobin Ehlis | |
| 2015-07-17 | vulkan: Fix definition of LayerProperties | Courtney Goeltzenleuchter | |
| 2015-07-17 | layers: MemTracker fix to skip COLOR usage bit check for now | Tobin Ehlis | |
| Now that Attachments are generalized and not color or DS specific, need to make sure we only check usage bits appropriate for a given image. | |||
| 2015-07-17 | layers: Fix some failing layer validation tests | Tobin Ehlis | |
| Correctly set stageCount to 1 for simple VS-only pipelines. Moved some DrawState code so state is only updated in event of no validation ERROR. | |||
| 2015-07-17 | demos: Hack to get cube working--only 2 swap chain images. | Ian Elliott | |
| Other people have hard-coded the number of framebuffers, command buffers, etc. as being equal to DEMO_BUFFER_COUNT (i.e. 2). Without reworking all of that code, this demo won't work. Go with the flow for the time being, and hard-code the number of swap chain images as 2. | |||
| 2015-07-17 | loader: Changes to use new WSI swapchain extensions. | Ian Elliott | |
| Use device extension list, not global. When validating the PhysicalDevice extensions really need to use the device extension list not the loader's global list. Fix include to find aligned_alloc | |||
| 2015-07-17 | icd-common: Changes to use new WSI swapchain extensions. | Ian Elliott | |
| 2015-07-17 | layers: INITIAL Changes to use new WSI swapchain extensions. | Ian Elliott | |
| There are still some FIXME's that must be addressed, as well as fully supporting the new entrypoints. This patch serves as a basis for review and further work with other Vulkan engineers. | |||
| 2015-07-17 | nulldrv: Changes to use new WSI swapchain extensions. | Ian Elliott | |
| 2015-07-17 | demos: Changes to use new WSI swapchain extensions. | Ian Elliott | |
| 2015-07-17 | WSI: Add swapchain-extension headers (versions 12 & 40). | Ian Elliott | |
| 2015-07-17 | misc: Bump patch number to reflect diffs | Courtney Goeltzenleuchter | |
| We've incorporated two changes that are not in the upstream v138 header so updating patch number to indicate that things are different. | |||
| 2015-07-17 | layers: Add install step for layers rpath settings | Mike Stroyan | |
| This allows a "make -Cbuild install' command to fix layer rpath. The new layer shared libraries are created in build/install_staging/. | |||
| 2015-07-17 | demos: Fix Linux compiler warnings in "vulkaninfo.c" | Ian Elliott | |
| 2015-07-17 | mem_tracker: Provide ctor for embedded union (and name it so we can) | Chris Forbes | |
| VkSwapChainCreateInfoWSI has a nontrivial default constructor due to having an embedded VkSwapChain handle. From the C++11 standard, 9.5: "If any non-static data member of a union has a non-trivial default constructor (12.1), copy constructor (12.8), move constructor (12.8), copy assignment operator (12.8), move assignment operator (12.8), or destructor (12.4), the corresponding member function of the union must be user-provided or it will be implicitly deleted (8.4.3) for the union." Signed-off-by: Chris Forbes <chrisf@ijw.co.nz> | |||
| 2015-07-17 | vulkan: Remove unused STRUCTURE_TYPE enum | Courtney Goeltzenleuchter | |
| 2015-07-17 | v106: remove optional primitiveRestartIndex | Courtney Goeltzenleuchter | |
| 2015-07-17 | vulkan.h: Remove unused LAYER_CREATE_INFO type | Courtney Goeltzenleuchter | |
| 2015-07-17 | v115: Remove pLinkConstBufferInfo | Courtney Goeltzenleuchter | |
| 2015-07-17 | v131?: Remove ColorBlendAttachments->format | Courtney Goeltzenleuchter | |
| 2015-07-17 | v122?: Remove provoking vertex, now always last | Courtney Goeltzenleuchter | |
| 2015-07-17 | v106: Remove optional pointOrigin | Courtney Goeltzenleuchter | |
| 2015-07-17 | v106: remove optional depthMode | Courtney Goeltzenleuchter | |
| 2015-07-17 | bug 14084: eliminate ERROR_INVALID_OBJECT_TYPE | Courtney Goeltzenleuchter | |
| 2015-07-17 | v127: Use PFN_vkVoidFunction for GetProcAddr | Courtney Goeltzenleuchter | |
| 2015-07-17 | v115: Remove linkConstBufferCount | Courtney Goeltzenleuchter | |
| 2015-07-17 | v106: Remove optional multisampleEnable | Courtney Goeltzenleuchter | |
| 2015-07-17 | v106: Remove clipOrigin | Courtney Goeltzenleuchter | |
| 2015-07-17 | v128: Remove maxInlineMemoryUpdateSize | Courtney Goeltzenleuchter | |
| 2015-07-17 | v133: eliminate version from extension properties | Courtney Goeltzenleuchter | |
| 2015-07-17 | v133: Update parameters on CmdPipelineBarrier | Courtney Goeltzenleuchter | |
