Lines Matching defs:count
406 void _glfwInputDrop(_GLFWwindow* window, int count, const char** paths)
409 assert(count > 0);
413 window->callbacks.drop((GLFWwindow*) window, count, paths);
491 const size_t count = sizeof(_glfwDefaultMappings) / sizeof(char*);
492 _glfw.mappings = _glfw_calloc(count, sizeof(_GLFWmapping));
494 for (i = 0; i < count; i++)
1073 GLFWAPI const float* glfwGetJoystickAxes(int jid, int* count)
1079 assert(count != NULL);
1081 *count = 0;
1101 *count = js->axisCount;
1105 GLFWAPI const unsigned char* glfwGetJoystickButtons(int jid, int* count)
1111 assert(count != NULL);
1113 *count = 0;
1134 *count = js->buttonCount + js->hatCount * 4;
1136 *count = js->buttonCount;
1141 GLFWAPI const unsigned char* glfwGetJoystickHats(int jid, int* count)
1147 assert(count != NULL);
1149 *count = 0;
1169 *count = js->hatCount;