Rename *Indeces variables and parameters to *Indices

The plural of index is indexes or indices, the latter seems to be more
common in technical contexts.
This commit is contained in:
Philipp Zabel 2020-10-25 13:28:23 +01:00
parent e6473a6edc
commit 4968fb8c02
5 changed files with 21 additions and 21 deletions

View file

@ -1267,12 +1267,12 @@ class Manager
* they would like to create the resources on.
*
* @param physicalDeviceIndex The index of the physical device to use
* @param familyQueueIndeces (Optional) List of queue indices to add for
* @param familyQueueIndices (Optional) List of queue indices to add for
* explicit allocation
* @param totalQueues The total number of compute queues to create.
*/
Manager(uint32_t physicalDeviceIndex,
const std::vector<uint32_t>& familyQueueIndeces = {});
const std::vector<uint32_t>& familyQueueIndices = {});
/**
* Manager constructor which allows your own vulkan application to integrate
@ -1509,7 +1509,7 @@ class Manager
std::unordered_map<std::string, std::shared_ptr<Sequence>>
mManagedSequences;
std::vector<uint32_t> mComputeQueueFamilyIndeces;
std::vector<uint32_t> mComputeQueueFamilyIndices;
std::vector<std::shared_ptr<vk::Queue>> mComputeQueues;
uint32_t mCurrentSequenceIndex = -1;
@ -1523,7 +1523,7 @@ class Manager
// Create functions
void createInstance();
void createDevice(const std::vector<uint32_t>& familyQueueIndeces = {});
void createDevice(const std::vector<uint32_t>& familyQueueIndices = {});
};
} // End namespace kp