Removed legacy GLFWCALL.

This commit is contained in:
Camilla Berglund
2010-09-08 04:15:36 +02:00
parent 105e927b84
commit c5af4c4324
6 changed files with 18 additions and 18 deletions
+8 -8
View File
@@ -162,7 +162,7 @@ static const char* get_character_string(int character)
return result;
}
static void GLFWCALL window_size_callback(int width, int height)
static void window_size_callback(int width, int height)
{
printf("%08x at %0.3f: Window size: %i %i\n",
counter++,
@@ -173,18 +173,18 @@ static void GLFWCALL window_size_callback(int width, int height)
glViewport(0, 0, width, height);
}
static int GLFWCALL window_close_callback(void)
static int window_close_callback(void)
{
printf("%08x at %0.3f: Window close\n", counter++, glfwGetTime());
return 1;
}
static void GLFWCALL window_refresh_callback(void)
static void window_refresh_callback(void)
{
printf("%08x at %0.3f: Window refresh\n", counter++, glfwGetTime());
}
static void GLFWCALL mouse_button_callback(int button, int action)
static void mouse_button_callback(int button, int action)
{
const char* name = get_button_name(button);
@@ -196,17 +196,17 @@ static void GLFWCALL mouse_button_callback(int button, int action)
printf(" was %s\n", get_action_name(action));
}
static void GLFWCALL mouse_position_callback(int x, int y)
static void mouse_position_callback(int x, int y)
{
printf("%08x at %0.3f: Mouse position: %i %i\n", counter++, glfwGetTime(), x, y);
}
static void GLFWCALL mouse_wheel_callback(int position)
static void mouse_wheel_callback(int position)
{
printf("%08x at %0.3f: Mouse wheel: %i\n", counter++, glfwGetTime(), position);
}
static void GLFWCALL key_callback(int key, int action)
static void key_callback(int key, int action)
{
const char* name = get_key_name(key);
@@ -250,7 +250,7 @@ static void GLFWCALL key_callback(int key, int action)
}
}
static void GLFWCALL char_callback(int character, int action)
static void char_callback(int character, int action)
{
printf("%08x at %0.3f: Character 0x%04x", counter++, glfwGetTime(), character);