freedreno/a4xx: support 16384 texels in buffer texture
[mesa.git] / src / gallium / auxiliary / util / u_format_fake.h
1 /**************************************************************************
2 *
3 * Copyright 2011 Red Hat 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
18 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 * USE OR OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * The above copyright notice and this permission notice (including the
23 * next paragraph) shall be included in all copies or substantial portions
24 * of the Software.
25 *
26 **************************************************************************/
27
28 #ifndef U_FORMAT_FAKE_H_
29 #define U_FORMAT_FAKE_H_
30
31 #define __format_fake(format) \
32 void \
33 util_format_##format##_fetch_rgba_8unorm(uint8_t *dst, const uint8_t *src, unsigned i, unsigned j); \
34 \
35 void \
36 util_format_##format##_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height); \
37 \
38 void \
39 util_format_##format##_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height); \
40 \
41 void \
42 util_format_##format##_unpack_rgba_float(float *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height); \
43 \
44 void \
45 util_format_##format##_pack_rgba_float(uint8_t *dst_row, unsigned dst_stride, const float *src_row, unsigned src_stride, unsigned width, unsigned height); \
46 \
47 void \
48 util_format_##format##_fetch_rgba_float(float *dst, const uint8_t *src, unsigned i, unsigned j);
49
50 __format_fake(bptc_rgba_unorm)
51 __format_fake(bptc_srgba)
52 __format_fake(bptc_rgb_float)
53 __format_fake(bptc_rgb_ufloat)
54
55 __format_fake(etc2_rgb8)
56 __format_fake(etc2_srgb8)
57 __format_fake(etc2_rgb8a1)
58 __format_fake(etc2_srgb8a1)
59 __format_fake(etc2_rgba8)
60 __format_fake(etc2_srgba8)
61 __format_fake(etc2_r11_unorm)
62 __format_fake(etc2_r11_snorm)
63 __format_fake(etc2_rg11_unorm)
64 __format_fake(etc2_rg11_snorm)
65
66 #endif