Make use of uint32_t where appropriate

This change does not affect the ABI.
This commit is contained in:
Camilla Berglund
2016-03-23 10:24:01 +01:00
parent 5661d03be8
commit 7ab7d8b4b1
9 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -1577,7 +1577,7 @@ const char* _glfwPlatformGetClipboardString(_GLFWwindow* window)
return _glfw.ns.clipboardString;
}
char** _glfwPlatformGetRequiredInstanceExtensions(unsigned int* count)
char** _glfwPlatformGetRequiredInstanceExtensions(uint32_t* count)
{
*count = 0;
return NULL;
@@ -1585,7 +1585,7 @@ char** _glfwPlatformGetRequiredInstanceExtensions(unsigned int* count)
int _glfwPlatformGetPhysicalDevicePresentationSupport(VkInstance instance,
VkPhysicalDevice device,
unsigned int queuefamily)
uint32_t queuefamily)
{
return GLFW_FALSE;
}