Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-19 | OPENGL: Limit maximum Surface size to maximum texture size. | Johannes Schickel | |
This is mostly aimed at old graphics chips. For example, wjp's old laptop only supports 1024x1024 textures but has a 1280x800 screen. Switching to fullscreen would create a bigger overlay than supported. Now it will get limited to an smaller resolution and then scaled too. Alternatively we could think of tiling surfaces into textures. But then handling scaling would be more complicated since it might result in artifacts on texture tile borders. | |||
2013-10-19 | SDL: Send EVENT_SCREEN_CHANGED after receiving SDL_VIDEORESIZE when necessary. | Johannes Schickel | |
This fixes some ugly crashes when resizing the window in OpenGL mode. | |||
2013-10-19 | TIZEN: Adapt to new OpenGL code. | Johannes Schickel | |
Thanks to Chris Warren-Smith for testing this a bit. | |||
2013-10-19 | OPENGL: Implement dirty rect handling. | Johannes Schickel | |
2013-10-19 | SDL: Use OSD in OpenGL SDL backend. | Johannes Schickel | |
2013-10-19 | OPENGL: Add OSD support. | Johannes Schickel | |
2013-10-19 | SDL: Add a OpenGL SDL backend and hook it into the SDL backend. | Johannes Schickel | |
The hooking code is nearly exactly the old hooking code. Only the OpenGL SDL creation has been adapted since it uses a different constructor now. | |||
2013-10-19 | OPENGL: Add new generic OpenGL (ES) backend. | Johannes Schickel | |
This backend is based on ideas of the old OpenGL backend, of the Android GL backend and of the iPhone GL backend. | |||
2013-10-09 | ANDROID: Really fix compilation. | D G Turner | |
The vanilla android toolchain even is unhappy when unknown folders are present in the resources directory, so have moved the ouya specific resources out to another directory. | |||
2013-10-09 | ANDROID: Fix compilation. | D G Turner | |
The aapt throws an "invalid resource directory name" if the resource directory name is not known to the tools. Unfortunately, "values-television" is an OUYA specific addition and thus breaks with the standard vanilla Android toolchain. | |||
2013-10-08 | Merge pull request #372 from zeldin/ouya | David Turner | |
Basic OUYA support | |||
2013-10-05 | BACKENDS: Remove OpenGL and OpenGL SDL backend. | Johannes Schickel | |
This breaks our Tizen port. | |||
2013-09-22 | EVENTS: Initialize class variable. CID 1002944 | Eugene Sandulenko | |
2013-08-23 | TIZEN: Silence cppcheck warning in scanStringUntil() | Torbjörn Andersson | |
This is consistent with scanString(), and I have verified that the included test cases still work. | |||
2013-08-18 | ANDROID: Add some margins when screen is a TV | Marcus Comstedt | |
2013-08-17 | TIZEN: updates for tizen 2.2 SDK | Chris Warren-Smith | |
2013-08-16 | VKEYBD: Make code agnostic of OverlayColor. | Johannes Schickel | |
This removes the use of OverlayColor in vkeybd and supports both 16 and 32bit overlays. | |||
2013-08-13 | DC: Use const version of ConfigManager::getGameDomains. | Johannes Schickel | |
This should fix compilation for the DC port. | |||
2013-08-08 | ANDROID: Enter main menu on middle mouse press | Marcus Comstedt | |
2013-08-08 | ANDROID: Add support for joystick motion | Marcus Comstedt | |
2013-08-08 | ANDROID: Add gamepad button support | Marcus Comstedt | |
2013-08-07 | IPHONE: Fix accidental double free. | Johannes Schickel | |
This was a copy&paste error. I also adapted the comment to be more clear. | |||
2013-08-07 | ANDROID: Add OUYA icon and intent | Marcus Comstedt | |
2013-08-06 | VKEYBD: Do not access Surface::pixels anymore. | Johannes Schickel | |
2013-08-06 | N64: Do not access Surface::pixels anymore. | Johannes Schickel | |
2013-08-06 | DC: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-06 | ANDROID: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-06 | PSP: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-06 | IPHONE: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-06 | NDS: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-06 | PS2: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-06 | WII: Do not access Surface::pixels directly. | Johannes Schickel | |
2013-08-03 | SDL: Do not set Surface::pixels directly anymore. | Johannes Schickel | |
2013-08-03 | BACKENDS: Take advantage of Surface::getPixels. | Johannes Schickel | |
2013-08-03 | SDL: Take advantage of Surface::getPixels. | Johannes Schickel | |
2013-08-03 | OPENGL: Take advantage of Surface::getPixels. | Johannes Schickel | |
2013-08-03 | IPHONE: Take advantage of Surface::getPixels. | Johannes Schickel | |
2013-08-03 | SDL: Prefer getBasePtr over direct Surface::pixels access. | Johannes Schickel | |
2013-08-03 | OPENGL: Prefer getBasePtr over direct Surface::pixels access. | Johannes Schickel | |
2013-08-03 | BACKENDS: Prefer getBasePtr over direct Surface::pixels access. | Johannes Schickel | |
2013-08-01 | Merge pull request #339 from onlyjob/hurd | Johannes Schickel | |
BACKENDS: fix FTBFS on GNU Hurd by replacing MAXHOSTNAMELEN with NI_MAXHOST | |||
2013-07-18 | Merge pull request #353 from clone2727/eventrec_timer_fix | Eugene Sandulenko | |
ALL: Don't use EventRecorder at all when not compiled in | |||
2013-07-14 | JANITORIAL: Remove trailing whitespace | Sven Hesse | |
2013-07-06 | ALL: Don't use EventRecorder at all when not compiled in | Matthew Hoops | |
2013-07-04 | Merge pull request #350 from chrisws/tizen_port_1_6_0a | Johannes Schickel | |
TIZEN: bada port updated to tizen Conflicts: backends/platform/tizen/system.cpp | |||
2013-07-04 | GUI: Cleanup EventRecorder::getSurface. | Johannes Schickel | |
Formerly the function created a SDL_Surface by hand. Instead now it uses SDL_CreateRGBSurface (which is used in the SDL backend anyway and yields the same results). This should fix PS3 port compilation. | |||
2013-07-04 | Merge pull request #331 from sev-/gsoc2012-eventsrecorder | Eugene Sandulenko | |
GSoC2012: Event Recorder (reworked) | |||
2013-07-04 | RECORDER: Fix guard ifdef | Eugene Sandulenko | |
2013-07-04 | SDL: Fix compilation by moving getMixerManager out of USE_OPENGL guard. | Johannes Schickel | |
2013-07-04 | SDL: Fix compilation on Solaris 10. | Johannes Schickel | |
This replaces a dummy FILE definition before including the SDL headers with simply using the toolchain's definition on Solaris. This is pretty harmless because we only allow FILE to be used in the SDL headers by this. Fixes bug #3614514 "#define FILE FAKE_FILE doesn't work on Solaris (w/ patch)". Thanks to lblume for his patch! |