mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-02 22:28:54 +00:00
D3D12: Initial commit for D3D12 backend implementation.
This commit is contained in:
parent
a2e2e36745
commit
8cc686b360
54 changed files with 12296 additions and 7 deletions
23
Source/Core/VideoBackends/D3D12/ShaderConstantsManager.h
Normal file
23
Source/Core/VideoBackends/D3D12/ShaderConstantsManager.h
Normal 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();
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue