summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/D3D/BoundingBox.h
blob: 8fd359a356ede413fa2a0e6aafd4ae6e032ebf4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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:
	static ID3D11UnorderedAccessView* &GetUAV();
	static void Init();
	static void Shutdown();

	static void Set(int index, int value);
	static int Get(int index);
};

};