91a2d41279f48d0816dd5c6ff3063a029e1be723
[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 bool
63 brw_blorp_clear_color(struct brw_context *brw, struct gl_framebuffer *fb,
64 GLbitfield mask, bool partial_clear, bool encode_srgb);
65
66 void
67 brw_blorp_resolve_color(struct brw_context *brw,
68 struct intel_mipmap_tree *mt,
69 unsigned level, unsigned layer);
70
71 void
72 intel_hiz_exec(struct brw_context *brw, struct intel_mipmap_tree *mt,
73 unsigned int level, unsigned int start_layer,
74 unsigned int num_layers, enum blorp_hiz_op op);
75
76 void gen4_blorp_exec(struct blorp_batch *batch,
77 const struct blorp_params *params);
78 void gen45_blorp_exec(struct blorp_batch *batch,
79 const struct blorp_params *params);
80 void gen5_blorp_exec(struct blorp_batch *batch,
81 const struct blorp_params *params);
82 void gen6_blorp_exec(struct blorp_batch *batch,
83 const struct blorp_params *params);
84 void gen7_blorp_exec(struct blorp_batch *batch,
85 const struct blorp_params *params);
86 void gen75_blorp_exec(struct blorp_batch *batch,
87 const struct blorp_params *params);
88 void gen8_blorp_exec(struct blorp_batch *batch,
89 const struct blorp_params *params);
90 void gen9_blorp_exec(struct blorp_batch *batch,
91 const struct blorp_params *params);
92
93 #ifdef __cplusplus
94 } /* extern "C" */
95 #endif
96
97 #endif /* BRW_BLORP_H */