2014-12-05 02:01:20 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "VideoBackends/D3D/D3DBase.h"
|
|
|
|
|
|
|
|
namespace DX11
|
|
|
|
{
|
|
|
|
class BBox
|
|
|
|
{
|
|
|
|
public:
|
2019-03-09 13:31:37 +00:00
|
|
|
static ID3D11UnorderedAccessView* GetUAV();
|
2014-12-05 02:01:20 +00:00
|
|
|
static void Init();
|
|
|
|
static void Shutdown();
|
|
|
|
|
|
|
|
static void Set(int index, int value);
|
|
|
|
static int Get(int index);
|
|
|
|
};
|
2019-05-05 23:48:12 +00:00
|
|
|
}; // namespace DX11
|