diff options
author | truelight <truelight@openttd.org> | 2007-06-12 20:24:12 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-06-12 20:24:12 +0000 |
commit | 0e53fd6d328a128799034e155a92cf44fddc1cd0 (patch) | |
tree | bed173ca279e1556489d31b0b8aa873a6d1cf110 /projects | |
parent | b729f5d08da470a92f585e2758ceeba823014a93 (diff) | |
download | openttd-0e53fd6d328a128799034e155a92cf44fddc1cd0.tar.xz |
(svn r10121) -Codechange: split renderer from rest of code; no longer any code directly accesses the video-buffer
-Add: added NULL blitter and renderer, which are always used for -vnull
-Add: dedicated driver doesn't blit nor render by default. Can be overruled by user. (-D -b 8bpp-optimized)
-Remove: removed CTRL+D from win32, which is incompatible with above
-Add: extended screenshot support for PNG and BMP
-Codechange: remove all hardcoded 8bpp references and replace them with more dynamic ones
-Codechange: minor stuff in blitters
Diffstat (limited to 'projects')
-rw-r--r-- | projects/openttd.vcproj | 25 | ||||
-rw-r--r-- | projects/openttd_vs80.vcproj | 32 |
2 files changed, 57 insertions, 0 deletions
diff --git a/projects/openttd.vcproj b/projects/openttd.vcproj index e395f4842..e7379545f 100644 --- a/projects/openttd.vcproj +++ b/projects/openttd.vcproj @@ -980,6 +980,12 @@ RelativePath=".\..\src\blitter\8bpp_simple.hpp"> </File> <File + RelativePath=".\..\src\blitter\null.cpp"> + </File> + <File + RelativePath=".\..\src\blitter\null.hpp"> + </File> + <File RelativePath=".\..\src\blitter\blitter.hpp"> </File> </Filter> @@ -997,6 +1003,25 @@ </File> </Filter> <Filter + Name="Renderer" + Filter=""> + <File + RelativePath=".\..\src\renderer\8bpp.cpp"> + </File> + <File + RelativePath=".\..\src\renderer\8bpp.hpp"> + </File> + <File + RelativePath=".\..\src\renderer\null.cpp"> + </File> + <File + RelativePath=".\..\src\renderer\null.hpp"> + </File> + <File + RelativePath=".\..\src\renderer\renderer.hpp"> + </File> + </Filter> + <Filter Name="NewGRF" Filter=""> <File diff --git a/projects/openttd_vs80.vcproj b/projects/openttd_vs80.vcproj index eee9ba6e4..613a61330 100644 --- a/projects/openttd_vs80.vcproj +++ b/projects/openttd_vs80.vcproj @@ -1528,6 +1528,14 @@ > </File> <File + RelativePath=".\..\src\blitter\null.cpp" + > + </File> + <File + RelativePath=".\..\src\blitter\null.hpp" + > + </File> + <File RelativePath=".\..\src\blitter\blitter.hpp" > </File> @@ -1549,6 +1557,30 @@ </File> </Filter> <Filter + Name="Renderer" + > + <File + RelativePath=".\..\src\renderer\8bpp.cpp" + > + </File> + <File + RelativePath=".\..\src\renderer\8bpp.hpp" + > + </File> + <File + RelativePath=".\..\src\renderer\null.cpp" + > + </File> + <File + RelativePath=".\..\src\renderer\null.hpp" + > + </File> + <File + RelativePath=".\..\src\renderer\renderer.hpp" + > + </File> + </Filter> + <Filter Name="NewGRF" > <File |