i965/nir/vec4: Implement load_const intrinsic
[mesa.git] / src / mesa / drivers / dri / i965 / intel_blit.h
1 /**************************************************************************
2 *
3 * Copyright 2003 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #ifndef INTEL_BLIT_H
29 #define INTEL_BLIT_H
30
31 #include "brw_context.h"
32
33 bool
34 intelEmitCopyBlit(struct brw_context *brw,
35 GLuint cpp,
36 GLshort src_pitch,
37 drm_intel_bo *src_buffer,
38 GLuint src_offset,
39 uint32_t src_tiling,
40 uint32_t src_tr_mode,
41 GLshort dst_pitch,
42 drm_intel_bo *dst_buffer,
43 GLuint dst_offset,
44 uint32_t dst_tiling,
45 uint32_t dst_tr_mode,
46 GLshort srcx, GLshort srcy,
47 GLshort dstx, GLshort dsty,
48 GLshort w, GLshort h,
49 GLenum logicop);
50
51 bool intel_miptree_blit_compatible_formats(mesa_format src, mesa_format dst);
52
53 bool intel_miptree_blit(struct brw_context *brw,
54 struct intel_mipmap_tree *src_mt,
55 int src_level, int src_slice,
56 uint32_t src_x, uint32_t src_y, bool src_flip,
57 struct intel_mipmap_tree *dst_mt,
58 int dst_level, int dst_slice,
59 uint32_t dst_x, uint32_t dst_y, bool dst_flip,
60 uint32_t width, uint32_t height,
61 GLenum logicop);
62
63 bool
64 intelEmitImmediateColorExpandBlit(struct brw_context *brw,
65 GLuint cpp,
66 GLubyte *src_bits, GLuint src_size,
67 GLuint fg_color,
68 GLshort dst_pitch,
69 drm_intel_bo *dst_buffer,
70 GLuint dst_offset,
71 uint32_t dst_tiling,
72 GLshort x, GLshort y,
73 GLshort w, GLshort h,
74 GLenum logic_op);
75 void intel_emit_linear_blit(struct brw_context *brw,
76 drm_intel_bo *dst_bo,
77 unsigned int dst_offset,
78 drm_intel_bo *src_bo,
79 unsigned int src_offset,
80 unsigned int size);
81
82 #endif