-
Notifications
You must be signed in to change notification settings - Fork 3
/
AmdDxExtIface.h
41 lines (36 loc) · 1.31 KB
/
AmdDxExtIface.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
***************************************************************************************************
*
* Copyright (c) 2008-2016 Advanced Micro Devices, Inc. All rights reserved.
*
***************************************************************************************************
*/
/**
***************************************************************************************************
* @file amddxextiface.h
* @brief
* AMD D3D Exension API include file. This is a helper include file for extensions. It
* provides a common base class for all extension interfaces
***************************************************************************************************
*/
#ifndef _AMDDXEXTIFACE_H_
#define _AMDDXEXTIFACE_H_
#include "AmdDxExt.h"
/**
***************************************************************************************************
* @brief Abstract extension interface class
*
* Each extension interface (e.g. tessellation) will derive from this class
***************************************************************************************************
*/
class IAmdDxExtInterface
{
public:
virtual unsigned int AddRef(void) = 0;
virtual unsigned int Release(void) = 0;
protected:
// Basic constructor
IAmdDxExtInterface() {};
virtual ~IAmdDxExtInterface() = 0 {};
};
#endif // _AMDDXEXTIFACE_H_