i965: avoid 'unused variable' warnings
[mesa.git] / src / mesa / drivers / dri / i965 / intel_tiled_memcpy_sse41.h
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright 2012 Intel Corporation
5 * Copyright 2013 Google
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sublicense, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
22 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
27 * Authors:
28 * Chad Versace <chad.versace@linux.intel.com>
29 * Frank Henigman <fjhenigman@google.com>
30 */
31
32 #ifndef INTEL_TILED_MEMCPY_SSE41_H
33 #define INTEL_TILED_MEMCPY_SSE41_H
34
35 #include <stdint.h>
36 #include "main/mtypes.h"
37 #include "isl/isl.h"
38
39 #include "intel_tiled_memcpy.h"
40
41 void
42 linear_to_tiled_sse41(uint32_t xt1, uint32_t xt2,
43 uint32_t yt1, uint32_t yt2,
44 char *dst, const char *src,
45 uint32_t dst_pitch, int32_t src_pitch,
46 bool has_swizzling,
47 enum isl_tiling tiling,
48 mem_copy_fn_type copy_type);
49
50 void
51 tiled_to_linear_sse41(uint32_t xt1, uint32_t xt2,
52 uint32_t yt1, uint32_t yt2,
53 char *dst, const char *src,
54 int32_t dst_pitch, uint32_t src_pitch,
55 bool has_swizzling,
56 enum isl_tiling tiling,
57 mem_copy_fn_type copy_type);
58
59 #endif /* INTEL_TILED_MEMCPY_SSE41_H */