Nick Clark

Results 14 issues of Nick Clark

When using this, it may be useful to add some documentation and then use a docgen tool (doxygen maybe?) to create docs. It'd be nice to have docs set up...

documentation

Currently, vk-bootstrap supports preferring a single device type to others, but it is unclear if there is any selection priority beyond that. I'd like to propose that an API is...

**What does this PR do?** Closes #1865. Without this, no platforms were ever emitted, which is invalid in VS2022. **How does this PR change Premake's behavior?** Always emits a platform...

**What does this PR do?** Adds a job to generate source packages. This job depends on the Linux, Windows, and MacOSX jobs completing successfully, as these should be a prerequisite...

**What does this PR do?** Adds the `uses` and `block` APIs. `uses` accepts a set of strings and `block` is a scoped API that accepts a name and a function....

**What does this PR do?** When using gmake or gmake2 exporter and GCC toolchain, the CC/CXX/AR variables used the environment default rather than being set to GCC tooling. This forces...

**What does this PR do?** Adds a toolset abstraction and implementation for GCC. **How does this PR change Premake's behavior?** No outwards facing behavioral changes. **Anything else we should know?**...

Resource page numbering is incorrect. This is an artifact of markdeep's styling. Recommend removing markdeep TOC styling and using manual TOC. This should help to unify style between this page...

enhancement

I am currently trying to use vuk in conjunction with the VK_EXT_descriptor_buffer. Currently, I have shader code that resembles this: ```glsl layout (set = 0, binding = 0) buffer model_payload_buffer...

A lot of times, it's nice to have both the VkQueue and queue index. I propose we add this convenience function to `vkb::Device`: ```cpp vkb::Result vkb::Device::get_queue_and_index(vkb::QueueType type) const; ``` Upon...