zink: handle ixor in ntv
[mesa.git] / src / gallium / drivers / zink / zink_resource.h
1 /*
2 * Copyright 2018 Collabora Ltd.
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 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the 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 NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23
24 #ifndef ZINK_RESOURCE_H
25 #define ZINK_RESOURCE_H
26
27 struct pipe_screen;
28 struct sw_displaytarget;
29
30 #include "util/u_transfer.h"
31
32 #include <vulkan/vulkan.h>
33
34 struct zink_resource {
35 struct pipe_resource base;
36
37 union {
38 VkBuffer buffer;
39 struct {
40 VkFormat format;
41 VkImage image;
42 VkImageLayout layout;
43 VkImageAspectFlags aspect;
44 bool optimial_tiling;
45 };
46 };
47 VkDeviceMemory mem;
48 VkDeviceSize offset, size;
49
50 struct sw_displaytarget *dt;
51 unsigned dt_stride;
52
53 bool needs_xfb_barrier;
54 };
55
56 struct zink_transfer {
57 struct pipe_transfer base;
58 struct pipe_resource *staging_res;
59 };
60
61 static inline struct zink_resource *
62 zink_resource(struct pipe_resource *r)
63 {
64 return (struct zink_resource *)r;
65 }
66
67 void
68 zink_screen_resource_init(struct pipe_screen *pscreen);
69
70 void
71 zink_context_resource_init(struct pipe_context *pctx);
72
73 #endif