Merge branch '7.8'
[mesa.git] / src / gallium / drivers / llvmpipe / lp_texture.h
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
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 TUNGSTEN GRAPHICS 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 LP_TEXTURE_H
29 #define LP_TEXTURE_H
30
31
32 #include "pipe/p_state.h"
33 #include "util/u_debug.h"
34
35
36 #define LP_MAX_TEXTURE_2D_LEVELS 12 /* 2K x 2K for now */
37 #define LP_MAX_TEXTURE_3D_LEVELS 10 /* 512 x 512 x 512 for now */
38
39 #define LP_MAX_TEXTURE_LEVELS LP_MAX_TEXTURE_2D_LEVELS
40
41
42 enum lp_texture_usage
43 {
44 LP_TEX_USAGE_READ = 100,
45 LP_TEX_USAGE_READ_WRITE,
46 LP_TEX_USAGE_WRITE_ALL
47 };
48
49
50 /** Per-tile layout mode */
51 enum lp_texture_layout
52 {
53 LP_TEX_LAYOUT_NONE = 0, /**< no layout for the tile data yet */
54 LP_TEX_LAYOUT_TILED, /**< the tile data is in tiled layout */
55 LP_TEX_LAYOUT_LINEAR, /**< the tile data is in linear layout */
56 LP_TEX_LAYOUT_BOTH /**< the tile data is in both modes */
57 };
58
59
60 struct pipe_context;
61 struct pipe_screen;
62 struct llvmpipe_context;
63
64 struct sw_displaytarget;
65
66
67 /**
68 * We keep one or two copies of the texture image data: one in a simple
69 * linear layout (for texture sampling) and another in a tiled layout (for
70 * render targets). We keep track of whether each image tile is linear
71 * or tiled on a per-tile basis.
72 */
73
74
75 /** A 1D/2D/3D image, one mipmap level */
76 struct llvmpipe_texture_image
77 {
78 void *data;
79 };
80
81
82 /**
83 * llvmpipe subclass of pipe_resource. A texture, drawing surface,
84 * vertex buffer, const buffer, etc.
85 * Textures are stored differently than othere types of objects such as
86 * vertex buffers and const buffers.
87 * The former are tiled and have per-tile layout flags.
88 * The later are simple malloc'd blocks of memory.
89 */
90 struct llvmpipe_resource
91 {
92 struct pipe_resource base;
93
94 /** Row stride in bytes */
95 unsigned stride[LP_MAX_TEXTURE_LEVELS];
96 unsigned tiles_per_row[LP_MAX_TEXTURE_LEVELS];
97
98 /**
99 * Display target, for textures with the PIPE_BIND_DISPLAY_TARGET
100 * usage.
101 */
102 struct sw_displaytarget *dt;
103
104 /**
105 * Malloc'ed data for regular textures, or a mapping to dt above.
106 */
107 struct llvmpipe_texture_image tiled[LP_MAX_TEXTURE_LEVELS];
108 struct llvmpipe_texture_image linear[LP_MAX_TEXTURE_LEVELS];
109
110 /**
111 * Data for non-texture resources.
112 */
113 void *data;
114
115 /** per-tile layout info */
116 enum lp_texture_layout *layout[PIPE_TEX_FACE_MAX][LP_MAX_TEXTURE_LEVELS];
117
118 boolean userBuffer; /** Is this a user-space buffer? */
119 unsigned timestamp;
120
121 unsigned id; /**< temporary, for debugging */
122 };
123
124
125 struct llvmpipe_transfer
126 {
127 struct pipe_transfer base;
128
129 unsigned long offset;
130 };
131
132
133 /** cast wrappers */
134 static INLINE struct llvmpipe_resource *
135 llvmpipe_resource(struct pipe_resource *pt)
136 {
137 return (struct llvmpipe_resource *) pt;
138 }
139
140
141 static INLINE const struct llvmpipe_resource *
142 llvmpipe_resource_const(const struct pipe_resource *pt)
143 {
144 return (const struct llvmpipe_resource *) pt;
145 }
146
147
148 static INLINE struct llvmpipe_transfer *
149 llvmpipe_transfer(struct pipe_transfer *pt)
150 {
151 return (struct llvmpipe_transfer *) pt;
152 }
153
154
155 void llvmpipe_init_screen_resource_funcs(struct pipe_screen *screen);
156 void llvmpipe_init_context_resource_funcs(struct pipe_context *pipe);
157
158 static INLINE unsigned
159 llvmpipe_resource_stride(struct pipe_resource *resource,
160 unsigned level)
161 {
162 struct llvmpipe_resource *lpr = llvmpipe_resource(resource);
163 assert(level < LP_MAX_TEXTURE_2D_LEVELS);
164 return lpr->stride[level];
165 }
166
167
168 void *
169 llvmpipe_resource_map(struct pipe_resource *resource,
170 unsigned face,
171 unsigned level,
172 unsigned zslice,
173 enum lp_texture_usage tex_usage,
174 enum lp_texture_layout layout);
175
176 void
177 llvmpipe_resource_unmap(struct pipe_resource *resource,
178 unsigned face,
179 unsigned level,
180 unsigned zslice);
181
182
183 void *
184 llvmpipe_resource_data(struct pipe_resource *resource);
185
186
187 void *
188 llvmpipe_get_texture_image_address(struct llvmpipe_resource *lpr,
189 unsigned face, unsigned level,
190 enum lp_texture_layout layout);
191
192 void *
193 llvmpipe_get_texture_image(struct llvmpipe_resource *resource,
194 unsigned face, unsigned level,
195 enum lp_texture_usage usage,
196 enum lp_texture_layout layout);
197
198
199 ubyte *
200 llvmpipe_get_texture_tile_linear(struct llvmpipe_resource *lpr,
201 unsigned face, unsigned level,
202 enum lp_texture_usage usage,
203 unsigned x, unsigned y);
204
205 ubyte *
206 llvmpipe_get_texture_tile(struct llvmpipe_resource *lpr,
207 unsigned face, unsigned level,
208 enum lp_texture_usage usage,
209 unsigned x, unsigned y);
210
211
212
213 extern void
214 llvmpipe_init_screen_texture_funcs(struct pipe_screen *screen);
215
216 extern void
217 llvmpipe_init_context_texture_funcs(struct pipe_context *pipe);
218
219 #endif /* LP_TEXTURE_H */