2016-10-07 04:26:39 -07:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Józef Kucia for CodeWeavers
|
|
|
|
*
|
2017-06-16 12:05:54 -07:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2016-10-07 04:26:39 -07:00
|
|
|
*
|
2017-06-16 12:05:54 -07:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2016-10-07 04:26:39 -07:00
|
|
|
*
|
2017-06-16 12:05:54 -07:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2016-10-07 04:26:39 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VKD3D_UTILS_PRIVATE_H
|
|
|
|
#define __VKD3D_UTILS_PRIVATE_H
|
|
|
|
|
2018-08-21 09:08:03 -07:00
|
|
|
#define COBJMACROS
|
|
|
|
#define NONAMELESSUNION
|
2018-01-24 05:33:35 -08:00
|
|
|
#define VK_NO_PROTOTYPES
|
|
|
|
|
2016-10-17 09:11:12 -07:00
|
|
|
#include <vkd3d.h>
|
2020-09-23 09:07:48 -07:00
|
|
|
#include <vkd3d_shader.h>
|
2020-09-29 14:14:51 -07:00
|
|
|
#include <vkd3d_d3dcompiler.h>
|
2016-10-07 04:26:39 -07:00
|
|
|
|
2020-09-23 09:07:48 -07:00
|
|
|
#include "vkd3d_blob.h"
|
2018-08-21 09:08:06 -07:00
|
|
|
#include "vkd3d_memory.h"
|
|
|
|
#include <vkd3d_utils.h>
|
|
|
|
|
2023-09-21 07:49:11 -07:00
|
|
|
#ifndef D3DERR_INVALIDCALL
|
|
|
|
#define D3DERR_INVALIDCALL _HRESULT_TYPEDEF_(0x8876086c)
|
|
|
|
#endif
|
|
|
|
|
2016-10-07 04:26:39 -07:00
|
|
|
#endif /* __VKD3D_UTILS_PRIVATE_H */
|