Thread: [Gambas-devel-svn] SF.net SVN: gambas:[4107] gambas/trunk/gb.sdl/src (Page 2)
Brought to you by:
gambas
From: <lor...@us...> - 2011-09-08 19:20:57
|
Revision: 4107 http://gambas.svn.sourceforge.net/gambas/?rev=4107&view=rev Author: lordheavy Date: 2011-09-08 19:20:50 +0000 (Thu, 08 Sep 2011) Log Message: ----------- [GB.SDL] * BUG: Disable Cursor handling, ad it's buggy and incomplete. Only default cursor is available. Modified Paths: -------------- gambas/trunk/gb.sdl/src/Cdraw.cpp gambas/trunk/gb.sdl/src/Cmouse.cpp gambas/trunk/gb.sdl/src/Cmouse.h gambas/trunk/gb.sdl/src/Cwindow.cpp gambas/trunk/gb.sdl/src/SDLosrender.cpp gambas/trunk/gb.sdl/src/SDLtexture.cpp gambas/trunk/gb.sdl/src/main.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2013-11-03 14:34:48
|
Revision: 5937 http://sourceforge.net/p/gambas/code/5937 Author: gambas Date: 2013-11-03 14:34:32 +0000 (Sun, 03 Nov 2013) Log Message: ----------- [GB.SDL] * NEW: Use the Gambas monospace font as SDL default font now. Modified Paths: -------------- gambas/trunk/gb.sdl/src/SDLfont.cpp gambas/trunk/gb.sdl/src/data/LICENSE gambas/trunk/gb.sdl/src/data/README Added Paths: ----------- gambas/trunk/gb.sdl/src/data/_default.bdf Removed Paths: ------------- gambas/trunk/gb.sdl/src/data/_default.ttf This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-01-16 22:05:16
|
Revision: 6085 http://sourceforge.net/p/gambas/code/6085 Author: gambas Date: 2014-01-16 22:05:12 +0000 (Thu, 16 Jan 2014) Log Message: ----------- [GB.SDL] * NEW: Remove the delay when 'Stop Event' is called during the Draw event handler. * NEW: The Gambas event loop is now called with a delay of 1 ms. So it will use a busy waiting instead of sleeping the process. Modified Paths: -------------- gambas/trunk/gb.sdl/src/Cwindow.cpp gambas/trunk/gb.sdl/src/main.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-01-27 13:00:39
|
Revision: 6107 http://sourceforge.net/p/gambas/code/6107 Author: gambas Date: 2014-01-27 13:00:36 +0000 (Mon, 27 Jan 2014) Log Message: ----------- [GB.SDL] * BUG: Don't create a default TTF font for each draw event! Modified Paths: -------------- gambas/trunk/gb.sdl/src/Cdraw.cpp gambas/trunk/gb.sdl/src/main.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-07-03 08:32:10
|
Revision: 6359 http://sourceforge.net/p/gambas/code/6359 Author: gambas Date: 2014-07-03 08:32:07 +0000 (Thu, 03 Jul 2014) Log Message: ----------- [GB.SDL] * NEW: Window.Grabbed is a new property that allows to grab the input and confine the mouse to the window. Modified Paths: -------------- gambas/trunk/gb.sdl/src/Cwindow.cpp gambas/trunk/gb.sdl/src/SDLwindow.cpp gambas/trunk/gb.sdl/src/SDLwindow.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-07-19 19:00:39
|
Revision: 6389 http://sourceforge.net/p/gambas/code/6389 Author: gambas Date: 2014-07-19 19:00:30 +0000 (Sat, 19 Jul 2014) Log Message: ----------- [GB.SDL] * NEW: Window.Screenshot() is a new method that returns a screenshot of the window contents by reading the OpenGL color buffer. Modified Paths: -------------- gambas/trunk/gb.sdl/src/Cimage.cpp gambas/trunk/gb.sdl/src/Cimage.h gambas/trunk/gb.sdl/src/Cwindow.cpp gambas/trunk/gb.sdl/src/SDLwindow.cpp gambas/trunk/gb.sdl/src/SDLwindow.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-07-20 02:46:26
|
Revision: 6390 http://sourceforge.net/p/gambas/code/6390 Author: gambas Date: 2014-07-20 02:46:17 +0000 (Sun, 20 Jul 2014) Log Message: ----------- [GB.SDL] * NEW: The default font is now embedded in the library. * BUG: The default font rendering has been fixed. * NEW: Window.Screenshot() now can take four optional arguments to define a rectangular sub-part of the window to retrieve. Modified Paths: -------------- gambas/trunk/gb.sdl/src/Cdraw.cpp gambas/trunk/gb.sdl/src/Cfont.cpp gambas/trunk/gb.sdl/src/Cimage.cpp gambas/trunk/gb.sdl/src/Cimage.h gambas/trunk/gb.sdl/src/Cwindow.cpp gambas/trunk/gb.sdl/src/Makefile.am gambas/trunk/gb.sdl/src/SDLfont.cpp gambas/trunk/gb.sdl/src/SDLfont.h gambas/trunk/gb.sdl/src/SDLsurface.cpp gambas/trunk/gb.sdl/src/SDLsurface.h Added Paths: ----------- gambas/trunk/gb.sdl/src/default_font.h Removed Paths: ------------- gambas/trunk/gb.sdl/src/data/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-10-11 13:37:03
|
Revision: 6530 http://sourceforge.net/p/gambas/code/6530 Author: gambas Date: 2014-10-11 13:37:00 +0000 (Sat, 11 Oct 2014) Log Message: ----------- [GB.SDL] * NEW: The default font is now scaled 2x if the font size set is twice the default font height, 3x if it is three times the default font height, and so on... Modified Paths: -------------- gambas/trunk/gb.sdl/src/Cdraw.cpp gambas/trunk/gb.sdl/src/Cfont.cpp gambas/trunk/gb.sdl/src/SDLfont.cpp gambas/trunk/gb.sdl/src/SDLfont.h gambas/trunk/gb.sdl/src/SDLgfx.cpp gambas/trunk/gb.sdl/src/SDLgfx.h gambas/trunk/gb.sdl/src/SDLtexture.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |