Search
lxdream.org :: lxdream/src/drivers/video_osx.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/drivers/video_osx.c
changeset 700:4650d0c7f6f9
prev681:1755a126b109
next736:a02d1475ccfd
author nkeynes
date Sun Jun 22 06:49:00 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Big cleanup of the command-line options
Add an actual manpage (*gasp*)
file annotate diff log raw
1.1 --- a/src/drivers/video_osx.c Sun Jun 01 00:47:45 2008 +0000
1.2 +++ b/src/drivers/video_osx.c Sun Jun 22 06:49:00 2008 +0000
1.3 @@ -36,12 +36,15 @@
1.4 static uint16_t video_osx_resolve_keysym( const gchar *keysym );
1.5 static uint16_t video_osx_keycode_to_dckeysym(uint16_t keycode);
1.6
1.7 -struct display_driver display_osx_driver = { "osx", video_osx_init, video_osx_shutdown,
1.8 - video_osx_resolve_keysym,
1.9 - video_osx_keycode_to_dckeysym,
1.10 - NULL,
1.11 - NULL, NULL, NULL, NULL, NULL,
1.12 - video_osx_display_blank, NULL };
1.13 +struct display_driver display_osx_driver = {
1.14 + "osx",
1.15 + N_("OS X Cocoa GUI-based OpenGL driver"),
1.16 + video_osx_init, video_osx_shutdown,
1.17 + video_osx_resolve_keysym,
1.18 + video_osx_keycode_to_dckeysym,
1.19 + NULL,
1.20 + NULL, NULL, NULL, NULL, NULL,
1.21 + video_osx_display_blank, NULL };
1.22
1.23
1.24 static NSView *video_view = NULL;
.