i965: Add a brw_blorp_copy_buffers() command.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_blorp.h
1 /*
2 * Copyright © 2012 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 #ifndef BRW_BLORP_H
25 #define BRW_BLORP_H
26
27 #include "blorp/blorp.h"
28 #include "intel_mipmap_tree.h"
29 #include "program/prog_instruction.h"
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 void brw_blorp_init(struct brw_context *brw);
36
37 void
38 brw_blorp_blit_miptrees(struct brw_context *brw,
39 struct intel_mipmap_tree *src_mt,
40 unsigned src_level, unsigned src_layer,
41 mesa_format src_format, int src_swizzle,
42 struct intel_mipmap_tree *dst_mt,
43 unsigned dst_level, unsigned dst_layer,
44 mesa_format dst_format,
45 float src_x0, float src_y0,
46 float src_x1, float src_y1,
47 float dst_x0, float dst_y0,
48 float dst_x1, float dst_y1,
49 GLenum filter, bool mirror_x, bool mirror_y,
50 bool decode_srgb, bool encode_srgb);
51
52 void
53 brw_blorp_copy_miptrees(struct brw_context *brw,
54 struct intel_mipmap_tree *src_mt,
55 unsigned src_level, unsigned src_logical_layer,
56 struct intel_mipmap_tree *dst_mt,
57 unsigned dst_level, unsigned dst_logical_layer,
58 unsigned src_x, unsigned src_y,
59 unsigned dst_x, unsigned dst_y,
60 unsigned src_width, unsigned src_height);
61
62 void
63 brw_blorp_copy_buffers(struct brw_context *brw,
64 struct brw_bo *src_bo,
65 unsigned src_offset,
66 struct brw_bo *dst_bo,
67 unsigned dst_offset,
68 unsigned size);
69
70 void
71 brw_blorp_clear_color(struct brw_context *brw, struct gl_framebuffer *fb,
72 GLbitfield mask, bool partial_clear, bool encode_srgb);
73 void
74 brw_blorp_clear_depth_stencil(struct brw_context *brw,
75 struct gl_framebuffer *fb,
76 GLbitfield mask, bool partial_clear);
77
78 void
79 brw_blorp_resolve_color(struct brw_context *brw,
80 struct intel_mipmap_tree *mt,
81 unsigned level, unsigned layer,
82 enum blorp_fast_clear_op resolve_op);
83
84 void
85 brw_blorp_mcs_partial_resolve(struct brw_context *brw,
86 struct intel_mipmap_tree *mt,
87 uint32_t start_layer, uint32_t num_layers);
88
89 void
90 intel_hiz_exec(struct brw_context *brw, struct intel_mipmap_tree *mt,
91 unsigned int level, unsigned int start_layer,
92 unsigned int num_layers, enum blorp_hiz_op op);
93
94 void gen4_blorp_exec(struct blorp_batch *batch,
95 const struct blorp_params *params);
96 void gen45_blorp_exec(struct blorp_batch *batch,
97 const struct blorp_params *params);
98 void gen5_blorp_exec(struct blorp_batch *batch,
99 const struct blorp_params *params);
100 void gen6_blorp_exec(struct blorp_batch *batch,
101 const struct blorp_params *params);
102 void gen7_blorp_exec(struct blorp_batch *batch,
103 const struct blorp_params *params);
104 void gen75_blorp_exec(struct blorp_batch *batch,
105 const struct blorp_params *params);
106 void gen8_blorp_exec(struct blorp_batch *batch,
107 const struct blorp_params *params);
108 void gen9_blorp_exec(struct blorp_batch *batch,
109 const struct blorp_params *params);
110 void gen10_blorp_exec(struct blorp_batch *batch,
111 const struct blorp_params *params);
112
113 #ifdef __cplusplus
114 } /* extern "C" */
115 #endif
116
117 #endif /* BRW_BLORP_H */