Files
@ r23882:d683a0787bc9
Branch filter:
Location: cpp/openttd-patchpack/source/projects/basesets_vs142.vcxproj.in - annotation
r23882:d683a0787bc9
1.8 KiB
text/plain
Codechange: Don't use SDL_CreateRGBSurfaceWithFormat()
This function requires libSDL 2.0.5 or higher. It looks like we don't
need to use it, and can just use the original SDL_CreateRGBSurface(),
with the masks set to 0, to trigger the default 8-bit format, which is
SDL_PIXELFORMAT_INDEX8.
Closes #7785
Note: this code path is activated by using an 8-bit blitter, like:
./bin/openttd -b 8bpp-simple
This function requires libSDL 2.0.5 or higher. It looks like we don't
need to use it, and can just use the original SDL_CreateRGBSurface(),
with the masks set to 0, to trigger the default 8-bit format, which is
SDL_PIXELFORMAT_INDEX8.
Closes #7785
Note: this code path is activated by using an 8-bit blitter, like:
./bin/openttd -b 8bpp-simple
r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 r23211:be0c64e8b669 | <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectName>basesets</ProjectName>
<ProjectGuid>{E12E77CA-C0F1-4ADA-943F-4929274249D3}</ProjectGuid>
<RootNamespace>basesets</RootNamespace>
<Keyword>MakeFileProj</Keyword>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Utility</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros">
!!FILTERS!!
</PropertyGroup>
<PropertyGroup>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\bin\baseset\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\objs\baseset\</IntDir>
</PropertyGroup>
<ItemGroup>
!!FILES!!
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
|