summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2019-05-09 14:08:30 -0400
committerTim Foley <tfoleyNV@users.noreply.github.com>2019-05-09 11:08:29 -0700
commit30eee05f3f809e3950c8d8463ecdd9807c943692 (patch)
tree29f7e87847cea14468e8cda79abece91494fdaa2 /tools
parent88a3f6476c37f3245de6d607d8055879f8892ee4 (diff)
IntSet -> UIntSet (#961)
* * Fix warning in vk-swap-chain around use of Index. Rename _indexOf to _indexOfFormat. * Rename IntSet to UIntSet and put in own files slang-uint-set.h.cpp. Use UInt as the held type. * On UintSet setMax -> resizeAndClear. Doing so revealed bug in add. * Closer following of conventions - use kPrefix for constants (even though held in 'enum') * Small fixes/improvements * * Add some documentation to UIntSet methods * Use memset to set/reset bits * Fix some tabbing. Rename oldBufferSize -> oldCount * Fix tabs.
Diffstat (limited to 'tools')
-rw-r--r--tools/gfx/vk-swap-chain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gfx/vk-swap-chain.cpp b/tools/gfx/vk-swap-chain.cpp
index 340e6a6a4..bde68c413 100644
--- a/tools/gfx/vk-swap-chain.cpp
+++ b/tools/gfx/vk-swap-chain.cpp
@@ -11,7 +11,7 @@
namespace gfx {
using namespace Slang;
-static int _indexOf(List<VkSurfaceFormatKHR>& formatsIn, VkFormat format)
+static Index _indexOfFormat(List<VkSurfaceFormatKHR>& formatsIn, VkFormat format)
{
const Index numFormats = formatsIn.getCount();
const VkSurfaceFormatKHR* formats = formatsIn.getBuffer();
@@ -81,7 +81,7 @@ SlangResult VulkanSwapChain::init(VulkanDeviceQueue* deviceQueue, const Desc& de
for(Index i = 0; i < formats.getCount(); ++i)
{
VkFormat format = formats[i];
- if (_indexOf(surfaceFormats, format) >= 0)
+ if (_indexOfFormat(surfaceFormats, format) >= 0)
{
m_format = format;
}