Mercurial > sdl-ios-xcode
annotate src/video/cybergfx/Makefile.am @ 604:31d3af76488b
Date: Mon, 24 Feb 2003 16:31:25 -0500
From: Ragnvald "Despair" Maartmann-Moe IV
Subject: SDL x11 video mode selection bug
Hi, I've found an oddity with video mode selection. I recently added a bunch of
oddball video modes to my XF86Config, to support weird resolutions xine &
mplayer need if I don't want to beat my cpu up with video scaling.
Since adding them, SDL started picking the biggest video mode it could find
that matched the height constraint. Getting a narrow vertical strip of
QuakeForge (I code for the project, so needless to say it's my favorite test)
in the middle of an 800x480 screen, instead of the 640x480 I asked for
annoys me tremendously.
So here's a patch that tries a bit harder to get an exact match. I didn't
touch the XiG section, since I can't test that, but I'd bet a similar patch
would prevent similar problems there.
--Ragnvald "Despair" Maartmann-Moe IV
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 06 Mar 2003 06:02:16 +0000 |
parents | 6d1025a73e69 |
children |
rev | line source |
---|---|
0 | 1 |
2 ## Makefile.am for SDL using the CyberGFX video driver | |
3 | |
4 noinst_LTLIBRARIES = libvideo_cgx.la | |
5 libvideo_cgx_la_SOURCES = $(CGX_SRCS) | |
6 | |
7 # The SDL CyberGFX video driver sources | |
8 CGX_SRCS = \ | |
9 SDL_amigaevents.c \ | |
10 SDL_amigaevents_c.h \ | |
11 SDL_amigamouse.c \ | |
12 SDL_amigamouse_c.h \ | |
13 SDL_cgxaccel.c \ | |
14 SDL_cgxgl.c \ | |
15 SDL_cgxgl_c.h \ | |
16 SDL_cgximage.c \ | |
17 SDL_cgximage_c.h \ | |
18 SDL_cgxmodes.c \ | |
19 SDL_cgxmodes_c.h \ | |
20 SDL_cgxvideo.c \ | |
21 SDL_cgxvideo.h \ | |
22 SDL_cgxwm.c \ | |
23
6d1025a73e69
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
23 SDL_cgxwm_c.h \ |
6d1025a73e69
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
24 SDL_cgxyuv.c \ |
6d1025a73e69
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
25 SDL_cgxyuv_c.h |