2017-10-11 03:09:04 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-03-06 18:34:34 +01:00
|
|
|
//for some reason we need to specify __declspec(dllexport) for MinGW
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define DLLEXPORT
|
|
|
|
#else
|
|
|
|
#define DLLEXPORT __declspec(dllexport)
|
|
|
|
#endif
|
2017-10-11 03:09:04 +02:00
|
|
|
|
|
|
|
#include "../util/com/com_guid.h"
|
|
|
|
#include "../util/com/com_object.h"
|
|
|
|
#include "../util/com/com_pointer.h"
|
|
|
|
|
|
|
|
#include "../util/log/log.h"
|
|
|
|
#include "../util/log/log_debug.h"
|
|
|
|
|
2017-10-11 15:31:36 +02:00
|
|
|
#include "../util/rc/util_rc.h"
|
|
|
|
#include "../util/rc/util_rc_ptr.h"
|
|
|
|
|
2017-10-11 03:09:04 +02:00
|
|
|
#include "../util/util_enum.h"
|
|
|
|
#include "../util/util_error.h"
|
2017-12-14 19:07:08 +01:00
|
|
|
#include "../util/util_math.h"
|
2017-10-11 03:09:04 +02:00
|
|
|
#include "../util/util_string.h"
|
|
|
|
|
|
|
|
#include <dxgi1_2.h>
|
|
|
|
|
2017-11-29 15:16:07 +01:00
|
|
|
// For some reason, these are not exposed
|
|
|
|
#ifndef DXGI_RESOURCE_PRIORITY_NORMAL
|
|
|
|
#define DXGI_RESOURCE_PRIORITY_MINIMUM (0x28000000)
|
|
|
|
#define DXGI_RESOURCE_PRIORITY_LOW (0x50000000)
|
|
|
|
#define DXGI_RESOURCE_PRIORITY_NORMAL (0x78000000)
|
|
|
|
#define DXGI_RESOURCE_PRIORITY_HIGH (0xa0000000)
|
|
|
|
#define DXGI_RESOURCE_PRIORITY_MAXIMUM (0xc8000000)
|
|
|
|
#endif
|