D3D12: Initial commit for D3D12 backend implementation.

This commit is contained in:
hdcmeta
2016-01-07 19:40:35 -08:00
parent a2e2e36745
commit 8cc686b360
54 changed files with 12296 additions and 7 deletions

View File

@ -0,0 +1,23 @@
// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include "ShaderCache.h"
namespace DX12
{
class ShaderConstantsManager final
{
public:
static void Init();
static void Shutdown();
static bool LoadAndSetGeometryShaderConstants();
static bool LoadAndSetPixelShaderConstants();
static bool LoadAndSetVertexShaderConstants();
};
}