2017-06-16 13:38:21 -07:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Józef Kucia for CodeWeavers
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VKD3D_SHADER_H
|
|
|
|
#define __VKD3D_SHADER_H
|
|
|
|
|
|
|
|
#include "vkd3d.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
enum vkd3d_shader_compiler_option
|
|
|
|
{
|
2017-06-27 13:21:43 -07:00
|
|
|
VKD3D_SHADER_STRIP_DEBUG = 0x00000001,
|
2017-06-16 13:38:21 -07:00
|
|
|
|
|
|
|
VKD3D_SHADER_COMPILER_OPTIONS_FORCE_32_BIT = 0x7fffffff,
|
|
|
|
};
|
|
|
|
|
2017-08-01 01:51:45 -07:00
|
|
|
enum vkd3d_shader_visibility
|
|
|
|
{
|
|
|
|
VKD3D_SHADER_VISIBILITY_ALL,
|
|
|
|
VKD3D_SHADER_VISIBILITY_VERTEX,
|
|
|
|
VKD3D_SHADER_VISIBILITY_HULL,
|
|
|
|
VKD3D_SHADER_VISIBILITY_DOMAIN,
|
|
|
|
VKD3D_SHADER_VISIBILITY_GEOMETRY,
|
|
|
|
VKD3D_SHADER_VISIBILITY_PIXEL,
|
|
|
|
};
|
|
|
|
|
2017-06-16 13:38:21 -07:00
|
|
|
struct vkd3d_shader_code
|
|
|
|
{
|
|
|
|
const void *code;
|
|
|
|
size_t size;
|
|
|
|
};
|
|
|
|
|
2017-07-26 04:45:25 -07:00
|
|
|
enum vkd3d_descriptor_type
|
|
|
|
{
|
|
|
|
VKD3D_DESCRIPTOR_TYPE_UNKNOWN,
|
|
|
|
VKD3D_DESCRIPTOR_TYPE_CBV, /* cb# */
|
|
|
|
VKD3D_DESCRIPTOR_TYPE_SRV, /* t# */
|
|
|
|
VKD3D_DESCRIPTOR_TYPE_UAV, /* u# */
|
|
|
|
VKD3D_DESCRIPTOR_TYPE_SAMPLER, /* s# */
|
|
|
|
};
|
|
|
|
|
2017-08-16 04:11:52 -07:00
|
|
|
struct vkd3d_shader_descriptor_binding
|
|
|
|
{
|
|
|
|
uint32_t set;
|
|
|
|
uint32_t binding;
|
|
|
|
};
|
|
|
|
|
2017-07-26 04:45:25 -07:00
|
|
|
struct vkd3d_shader_resource_binding
|
|
|
|
{
|
|
|
|
enum vkd3d_descriptor_type type;
|
2017-07-27 06:16:49 -07:00
|
|
|
unsigned int register_index;
|
2017-08-08 08:09:35 -07:00
|
|
|
bool is_buffer;
|
2017-07-26 04:45:25 -07:00
|
|
|
|
2017-08-16 04:11:52 -07:00
|
|
|
struct vkd3d_shader_descriptor_binding binding;
|
2017-07-26 04:45:25 -07:00
|
|
|
};
|
|
|
|
|
2017-07-27 06:16:49 -07:00
|
|
|
struct vkd3d_shader_push_constant
|
|
|
|
{
|
|
|
|
unsigned int register_index;
|
2017-08-01 01:51:45 -07:00
|
|
|
enum vkd3d_shader_visibility shader_visibility;
|
2017-07-27 06:16:49 -07:00
|
|
|
|
2017-08-01 01:51:45 -07:00
|
|
|
unsigned int offset; /* in bytes */
|
|
|
|
unsigned int size; /* in bytes */
|
2017-07-27 06:16:49 -07:00
|
|
|
};
|
|
|
|
|
2017-08-16 04:11:52 -07:00
|
|
|
struct vkd3d_shader_interface
|
|
|
|
{
|
|
|
|
const struct vkd3d_shader_resource_binding *bindings;
|
|
|
|
unsigned int binding_count;
|
|
|
|
|
|
|
|
const struct vkd3d_shader_push_constant *push_constants;
|
|
|
|
unsigned int push_constant_count;
|
2017-08-16 04:11:52 -07:00
|
|
|
|
|
|
|
/* A sampler used by OpImageFetches generated for SM4 ld instructions.
|
|
|
|
*
|
|
|
|
* In Vulkan OpImageFetch must be used with a sampled image.
|
|
|
|
*/
|
|
|
|
struct vkd3d_shader_descriptor_binding default_sampler;
|
2017-08-16 04:11:52 -07:00
|
|
|
};
|
|
|
|
|
2017-06-16 13:38:21 -07:00
|
|
|
HRESULT vkd3d_shader_compile_dxbc(const struct vkd3d_shader_code *dxbc,
|
2017-07-26 04:45:25 -07:00
|
|
|
struct vkd3d_shader_code *spirv, uint32_t compiler_options,
|
2017-08-16 04:11:52 -07:00
|
|
|
const struct vkd3d_shader_interface *shader_interface);
|
2017-06-16 13:38:21 -07:00
|
|
|
void vkd3d_shader_free_shader_code(struct vkd3d_shader_code *code);
|
|
|
|
|
2017-06-27 04:16:47 -07:00
|
|
|
HRESULT vkd3d_shader_parse_root_signature(const struct vkd3d_shader_code *dxbc,
|
|
|
|
D3D12_ROOT_SIGNATURE_DESC *root_signature);
|
|
|
|
void vkd3d_shader_free_root_signature(D3D12_ROOT_SIGNATURE_DESC *root_signature);
|
|
|
|
|
2017-09-01 02:27:58 -07:00
|
|
|
#define VKD3D_SHADER_MAX_UNORDERED_ACCESS_VIEWS 8
|
|
|
|
|
|
|
|
struct vkd3d_shader_scan_info
|
|
|
|
{
|
|
|
|
unsigned int uav_read_mask : VKD3D_SHADER_MAX_UNORDERED_ACCESS_VIEWS;
|
|
|
|
unsigned int uav_counter_mask : VKD3D_SHADER_MAX_UNORDERED_ACCESS_VIEWS;
|
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT vkd3d_shader_scan_dxbc(const struct vkd3d_shader_code *dxbc,
|
|
|
|
struct vkd3d_shader_scan_info *scan_info);
|
|
|
|
|
2017-06-16 13:38:21 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#endif /* __VKD3D_SHADER_H */
|