mirror of https://github.com/stella-emu/stella.git
Final updates for 4.6 release.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@3154 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
7c0fc50a2f
commit
651204df32
|
@ -12,7 +12,7 @@
|
|||
Release History
|
||||
===========================================================================
|
||||
|
||||
4.5 to 4.6: (March xx, 2015)
|
||||
4.5 to 4.6: (March 21, 2015)
|
||||
|
||||
* Finally fixed fullscreen rendering issues on some OpenGL
|
||||
implementations in Linux (mostly Intel-specific). Basically, the
|
||||
|
|
|
@ -2,7 +2,7 @@ stella (4.6-1) stable; urgency=high
|
|||
|
||||
* Version 4.6 release
|
||||
|
||||
-- Stephen Anthony <stephena@users.sf.net>
|
||||
-- Stephen Anthony <stephena@users.sf.net> Fri, 20 Mar 2015 21:17:06 -0230
|
||||
|
||||
|
||||
stella (4.5-1) stable; urgency=high
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
|
||||
<br><br><br>
|
||||
|
||||
<center><b>February 1999 - January 2015</b></center>
|
||||
<center><b>February 1999 - March 2015</b></center>
|
||||
<center><b>The Stella Team</b></center>
|
||||
<center><b><a href="http://stella.sourceforge.net">Stella Homepage</a></b></center>
|
||||
|
||||
|
@ -335,8 +335,7 @@
|
|||
<li>OpenGL capable video card</li>
|
||||
<li>Other architectures (MIPS, PPC, PPC64, etc) have been confirmed to work,
|
||||
but aren't as well tested as i386/x86_64</li>
|
||||
<li>GNU g++ v/4.9 or Clang v/3.3 (with C++11 support) and the make utility are required for compiling
|
||||
the Stella source code</li>
|
||||
<li>GNU g++ v/4.8 or Clang v/3.3 (with C++11 support) and the make utility are required for compiling the Stella source code</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
|
|
|
@ -38,8 +38,7 @@ FrameBufferSDL2::FrameBufferSDL2(OSystem& osystem)
|
|||
: FrameBuffer(osystem),
|
||||
myWindow(nullptr),
|
||||
myRenderer(nullptr),
|
||||
myDirtyFlag(true),
|
||||
myDblBufferedFlag(true)
|
||||
myDirtyFlag(true)
|
||||
{
|
||||
// Initialize SDL2 context
|
||||
if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_TIMER | SDL_INIT_JOYSTICK) < 0)
|
||||
|
@ -210,12 +209,7 @@ bool FrameBufferSDL2::setVideoMode(const string& title, const VideoMode& mode,
|
|||
}
|
||||
SDL_RendererInfo renderinfo;
|
||||
if(SDL_GetRendererInfo(myRenderer, &renderinfo) >= 0)
|
||||
{
|
||||
myOSystem.settings().setValue("video", renderinfo.name);
|
||||
// For now, accelerated renderers imply double buffering
|
||||
// Eventually, SDL may be updated to query this from the render backend
|
||||
myDblBufferedFlag = renderinfo.flags & SDL_RENDERER_ACCELERATED;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -181,9 +181,6 @@ class FrameBufferSDL2 : public FrameBuffer
|
|||
|
||||
// Indicates that the renderer has been modified, and should be redrawn
|
||||
bool myDirtyFlag;
|
||||
|
||||
// Indicates whether the render backend is using double buffering
|
||||
bool myDblBufferedFlag;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include <cstdlib>
|
||||
|
||||
#define STELLA_VERSION "4.6_svn"
|
||||
#define STELLA_VERSION "4.6"
|
||||
#define STELLA_BUILD atoi("$Rev$" + 6)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -101,7 +101,7 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version}
|
|||
%_datadir/icons/large/%{name}.png
|
||||
|
||||
%changelog
|
||||
* XXX Feb xx 2015 Stephen Anthony <stephena@users.sf.net> 4.6-1
|
||||
* Sat Mar 21 2015 Stephen Anthony <stephena@users.sf.net> 4.6-1
|
||||
- Version 4.6 release
|
||||
|
||||
* Thu Jan 1 2015 Stephen Anthony <stephena@users.sf.net> 4.5-1
|
||||
|
|
Loading…
Reference in New Issue