Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/util/format/u_format_bptc.h
7178 views
1
/**************************************************************************
2
*
3
* Copyright 2010 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 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
29
#ifndef U_FORMAT_BPTC_H_
30
#define U_FORMAT_BPTC_H_
31
32
33
#include "pipe/p_compiler.h"
34
35
#ifdef __cplusplus
36
extern "C" {
37
#endif
38
39
void
40
util_format_bptc_rgba_unorm_unpack_rgba_8unorm(uint8_t *restrict dst_row, unsigned dst_stride,
41
const uint8_t *restrict src_row, unsigned src_stride,
42
unsigned width, unsigned height);
43
void
44
util_format_bptc_rgba_unorm_pack_rgba_8unorm(uint8_t *restrict dst_row, unsigned dst_stride,
45
const uint8_t *restrict src_row, unsigned src_stride,
46
unsigned width, unsigned height);
47
void
48
util_format_bptc_rgba_unorm_unpack_rgba_float(void *restrict dst_row, unsigned dst_stride,
49
const uint8_t *restrict src_row, unsigned src_stride,
50
unsigned width, unsigned height);
51
void
52
util_format_bptc_rgba_unorm_pack_rgba_float(uint8_t *restrict dst_row, unsigned dst_stride,
53
const float *restrict src_row, unsigned src_stride,
54
unsigned width, unsigned height);
55
void
56
util_format_bptc_rgba_unorm_fetch_rgba(void *restrict dst, const uint8_t *restrict src,
57
unsigned width, unsigned height);
58
59
void
60
util_format_bptc_srgba_unpack_rgba_8unorm(uint8_t *restrict dst_row, unsigned dst_stride,
61
const uint8_t *restrict src_row, unsigned src_stride,
62
unsigned width, unsigned height);
63
void
64
util_format_bptc_srgba_pack_rgba_8unorm(uint8_t *restrict dst_row, unsigned dst_stride,
65
const uint8_t *restrict src_row, unsigned src_stride,
66
unsigned width, unsigned height);
67
void
68
util_format_bptc_srgba_unpack_rgba_float(void *restrict dst_row, unsigned dst_stride,
69
const uint8_t *restrict src_row, unsigned src_stride,
70
unsigned width, unsigned height);
71
void
72
util_format_bptc_srgba_pack_rgba_float(uint8_t *restrict dst_row, unsigned dst_stride,
73
const float *restrict src_row, unsigned src_stride,
74
unsigned width, unsigned height);
75
void
76
util_format_bptc_srgba_fetch_rgba(void *restrict dst, const uint8_t *restrict src,
77
unsigned width, unsigned height);
78
79
void
80
util_format_bptc_rgb_float_unpack_rgba_8unorm(uint8_t *restrict dst_row, unsigned dst_stride,
81
const uint8_t *restrict src_row, unsigned src_stride,
82
unsigned width, unsigned height);
83
void
84
util_format_bptc_rgb_float_pack_rgba_8unorm(uint8_t *restrict dst_row, unsigned dst_stride,
85
const uint8_t *restrict src_row, unsigned src_stride,
86
unsigned width, unsigned height);
87
void
88
util_format_bptc_rgb_float_unpack_rgba_float(void *restrict dst_row, unsigned dst_stride,
89
const uint8_t *restrict src_row, unsigned src_stride,
90
unsigned width, unsigned height);
91
void
92
util_format_bptc_rgb_float_pack_rgba_float(uint8_t *restrict dst_row, unsigned dst_stride,
93
const float *restrict src_row, unsigned src_stride,
94
unsigned width, unsigned height);
95
void
96
util_format_bptc_rgb_float_fetch_rgba(void *restrict dst, const uint8_t *restrict src,
97
unsigned width, unsigned height);
98
99
void
100
util_format_bptc_rgb_ufloat_unpack_rgba_8unorm(uint8_t *restrict dst_row, unsigned dst_stride,
101
const uint8_t *restrict src_row, unsigned src_stride,
102
unsigned width, unsigned height);
103
void
104
util_format_bptc_rgb_ufloat_pack_rgba_8unorm(uint8_t *restrict dst_row, unsigned dst_stride,
105
const uint8_t *restrict src_row, unsigned src_stride,
106
unsigned width, unsigned height);
107
void
108
util_format_bptc_rgb_ufloat_unpack_rgba_float(void *restrict dst_row, unsigned dst_stride,
109
const uint8_t *restrict src_row, unsigned src_stride,
110
unsigned width, unsigned height);
111
void
112
util_format_bptc_rgb_ufloat_pack_rgba_float(uint8_t *restrict dst_row, unsigned dst_stride,
113
const float *restrict src_row, unsigned src_stride,
114
unsigned width, unsigned height);
115
void
116
util_format_bptc_rgb_ufloat_fetch_rgba(void *restrict dst, const uint8_t *restrict src,
117
unsigned width, unsigned height);
118
#ifdef __cplusplus
119
}
120
#endif
121
122
#endif /* U_FORMAT_BPTC_H_ */
123
124