mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
- Compute is now used to assist in some parts of blit operations, since there are no format conversions with vulkan like OGL does - TODO: Integrate this into all types of GPU memory conversion operations instead of downloading to CPU then converting
108 lines
No EOL
5.1 KiB
XML
108 lines
No EOL
5.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
<ProjectConfiguration Include="Debug - LLVM|x64">
|
|
<Configuration>Debug - LLVM</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Debug - MemLeak|x64">
|
|
<Configuration>Debug - MemLeak</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
<Configuration>Debug</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Release - LLVM|x64">
|
|
<Configuration>Release - LLVM</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Release|x64">
|
|
<Configuration>Release</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="Emu\RSX\VK\VKCommonDecompiler.h" />
|
|
<ClInclude Include="Emu\RSX\VK\VKCompute.h" />
|
|
<ClInclude Include="Emu\RSX\VK\VKFormats.h" />
|
|
<ClInclude Include="Emu\RSX\VK\VKFragmentProgram.h" />
|
|
<ClInclude Include="Emu\RSX\VK\VKGSRender.h" />
|
|
<ClInclude Include="Emu\RSX\VK\VKHelpers.h" />
|
|
<ClInclude Include="Emu\RSX\VK\VKOverlays.h" />
|
|
<ClInclude Include="Emu\RSX\VK\VKProgramBuffer.h" />
|
|
<ClInclude Include="Emu\RSX\VK\VKRenderTargets.h" />
|
|
<ClInclude Include="Emu\RSX\VK\VKTextOut.h" />
|
|
<ClInclude Include="Emu\RSX\VK\VKTextureCache.h" />
|
|
<ClInclude Include="Emu\RSX\VK\VKVertexProgram.h" />
|
|
<ClInclude Include="Emu\RSX\VK\VulkanAPI.h" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="Emu\RSX\VK\VKCommonDecompiler.cpp" />
|
|
<ClCompile Include="Emu\RSX\VK\VKFormats.cpp" />
|
|
<ClCompile Include="Emu\RSX\VK\VKFragmentProgram.cpp" />
|
|
<ClCompile Include="Emu\RSX\VK\VKGSRender.cpp" />
|
|
<ClCompile Include="Emu\RSX\VK\VKHelpers.cpp" />
|
|
<ClCompile Include="Emu\RSX\VK\VKProgramPipeline.cpp" />
|
|
<ClCompile Include="Emu\RSX\VK\VKTexture.cpp" />
|
|
<ClCompile Include="Emu\RSX\VK\VKVertexBuffers.cpp" />
|
|
<ClCompile Include="Emu\RSX\VK\VKVertexProgram.cpp" />
|
|
<ClCompile Include="Emu\RSX\VK\VKMemAlloc.cpp" />
|
|
<ClCompile Include="Emu\RSX\VK\VulkanAPI.cpp" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="emucore.vcxproj">
|
|
<Project>{c4a10229-4712-4bd2-b63e-50d93c67a038}</Project>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{3EE5F075-B546-42C4-B6A8-E3CCEF38B78D}</ProjectGuid>
|
|
<Keyword>Win32Proj</Keyword>
|
|
<RootNamespace>VKGSRender</RootNamespace>
|
|
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<PropertyGroup Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<PlatformToolset>v140</PlatformToolset>
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
<ImportGroup Label="ExtensionSettings">
|
|
</ImportGroup>
|
|
<ImportGroup Label="Shared">
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets">
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
<Import Project="..\rpcs3_default.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<Import Project="..\rpcs3_debug.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug - MemLeak|x64'" Label="PropertySheets">
|
|
<Import Project="..\rpcs3_debug.props" />
|
|
<Import Project="..\rpcs3_memleak.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug - LLVM|x64'" Label="PropertySheets">
|
|
<Import Project="..\rpcs3_debug.props" />
|
|
<Import Project="..\rpcs3_llvm.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<Import Project="..\rpcs3_release.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release - LLVM|x64'" Label="PropertySheets">
|
|
<Import Project="..\rpcs3_release.props" />
|
|
<Import Project="..\rpcs3_llvm.props" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="UserMacros" />
|
|
<PropertyGroup />
|
|
<ItemDefinitionGroup>
|
|
<ClCompile>
|
|
<AdditionalIncludeDirectories>$(VULKAN_SDK)\Include;..\Vulkan\glslang\glslang\Public;..\Vulkan\glslang;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">/bigobj %(AdditionalOptions)</AdditionalOptions>
|
|
</ClCompile>
|
|
</ItemDefinitionGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets">
|
|
</ImportGroup>
|
|
</Project> |