Lines Matching defs:shape
874 GLFWAPI GLFWcursor* glfwCreateStandardCursor(int shape)
880 if (shape != GLFW_ARROW_CURSOR &&
881 shape != GLFW_IBEAM_CURSOR &&
882 shape != GLFW_CROSSHAIR_CURSOR &&
883 shape != GLFW_POINTING_HAND_CURSOR &&
884 shape != GLFW_RESIZE_EW_CURSOR &&
885 shape != GLFW_RESIZE_NS_CURSOR &&
886 shape != GLFW_RESIZE_NWSE_CURSOR &&
887 shape != GLFW_RESIZE_NESW_CURSOR &&
888 shape != GLFW_RESIZE_ALL_CURSOR &&
889 shape != GLFW_NOT_ALLOWED_CURSOR)
891 _glfwInputError(GLFW_INVALID_ENUM, "Invalid standard cursor 0x%08X", shape);
899 if (!_glfw.platform.createStandardCursor(cursor, shape))