Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6358073 commit e8c59eeCopy full SHA for e8c59ee
1 file changed
03_Drawing_a_triangle/00_Setup/02_Validation_layers.md
@@ -180,11 +180,11 @@ not:
180
std::vector<const char*> getRequiredExtensions() {
181
std::vector<const char*> extensions;
182
183
- unsigned int glfwExtensionCount = 0;
+ uint32_t glfwExtensionCount = 0;
184
const char** glfwExtensions;
185
glfwExtensions = glfwGetRequiredInstanceExtensions(&glfwExtensionCount);
186
187
- for (unsigned int i = 0; i < glfwExtensionCount; i++) {
+ for (uint32_t i = 0; i < glfwExtensionCount; i++) {
188
extensions.push_back(glfwExtensions[i]);
189
}
190
0 commit comments