anv: pCreateInfo->pApplicationInfo parameter to vkCreateInstance may be NULL
[mesa.git] / src / vulkan / anv_meta.h
1 /*
2 * Copyright © 2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #pragma once
25
26 #include "anv_private.h"
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 #define ANV_META_VERTEX_BINDING_COUNT 2
33
34 struct anv_meta_saved_state {
35 struct anv_vertex_binding old_vertex_bindings[ANV_META_VERTEX_BINDING_COUNT];
36 struct anv_descriptor_set *old_descriptor_set0;
37 struct anv_pipeline *old_pipeline;
38
39 /**
40 * Bitmask of (1 << VK_DYNAMIC_STATE_*). Defines the set of saved dynamic
41 * state.
42 */
43 uint32_t dynamic_mask;
44 struct anv_dynamic_state dynamic;
45 };
46
47 VkResult anv_device_init_meta_clear_state(struct anv_device *device);
48 void anv_device_finish_meta_clear_state(struct anv_device *device);
49
50 VkResult anv_device_init_meta_resolve_state(struct anv_device *device);
51 void anv_device_finish_meta_resolve_state(struct anv_device *device);
52
53 VkResult anv_device_init_meta_blit_state(struct anv_device *device);
54 void anv_device_finish_meta_blit_state(struct anv_device *device);
55
56 void
57 anv_meta_save(struct anv_meta_saved_state *state,
58 const struct anv_cmd_buffer *cmd_buffer,
59 uint32_t dynamic_mask);
60
61 void
62 anv_meta_restore(const struct anv_meta_saved_state *state,
63 struct anv_cmd_buffer *cmd_buffer);
64
65 VkImageViewType
66 anv_meta_get_view_type(const struct anv_image *image);
67
68 uint32_t
69 anv_meta_get_iview_layer(const struct anv_image *dest_image,
70 const VkImageSubresourceLayers *dest_subresource,
71 const VkOffset3D *dest_offset);
72
73 #ifdef __cplusplus
74 }
75 #endif