Merge remote branch 'upstream/gallium-0.1' into nouveau-gallium-0.1
[mesa.git] / src / mesa / state_tracker / st_texture.c
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 #include "st_context.h"
29 #include "st_format.h"
30 #include "st_texture.h"
31 #include "enums.h"
32
33 #undef Elements /* fix re-defined macro warning */
34
35 #include "pipe/p_state.h"
36 #include "pipe/p_context.h"
37 #include "pipe/p_defines.h"
38 #include "pipe/p_inlines.h"
39 #include "pipe/p_util.h"
40 #include "pipe/p_inlines.h"
41
42
43 #define DBG if(0) printf
44
45 #if 0
46 static GLenum
47 target_to_target(GLenum target)
48 {
49 switch (target) {
50 case GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB:
51 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB:
52 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB:
53 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB:
54 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB:
55 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB:
56 return GL_TEXTURE_CUBE_MAP_ARB;
57 default:
58 return target;
59 }
60 }
61 #endif
62
63
64 /**
65 * Allocate a new pipe_texture object
66 * width0, height0, depth0 are the dimensions of the level 0 image
67 * (the highest resolution). last_level indicates how many mipmap levels
68 * to allocate storage for. For non-mipmapped textures, this will be zero.
69 */
70 struct pipe_texture *
71 st_texture_create(struct st_context *st,
72 enum pipe_texture_target target,
73 enum pipe_format format,
74 GLuint last_level,
75 GLuint width0,
76 GLuint height0,
77 GLuint depth0,
78 GLuint compress_byte)
79 {
80 struct pipe_texture pt, *newtex;
81 struct pipe_screen *screen = st->pipe->screen;
82
83 assert(target <= PIPE_TEXTURE_CUBE);
84
85 DBG("%s target %s format %s last_level %d\n", __FUNCTION__,
86 _mesa_lookup_enum_by_nr(target),
87 _mesa_lookup_enum_by_nr(format), last_level);
88
89 assert(format);
90 assert(screen->is_format_supported(screen, format, PIPE_TEXTURE));
91
92 memset(&pt, 0, sizeof(pt));
93 pt.target = target;
94 pt.format = format;
95 pt.last_level = last_level;
96 pt.width[0] = width0;
97 pt.height[0] = height0;
98 pt.depth[0] = depth0;
99 pt.compressed = compress_byte ? 1 : 0;
100 pt.cpp = pt.compressed ? compress_byte : st_sizeof_format(format);
101
102 newtex = screen->texture_create(screen, &pt);
103
104 assert(!newtex || newtex->refcount == 1);
105
106 return newtex;
107 }
108
109
110 /**
111 * Check if a texture image be pulled into a unified mipmap texture.
112 * This mirrors the completeness test in a lot of ways.
113 *
114 * Not sure whether I want to pass gl_texture_image here.
115 */
116 GLboolean
117 st_texture_match_image(const struct pipe_texture *pt,
118 const struct gl_texture_image *image,
119 GLuint face, GLuint level)
120 {
121 /* Images with borders are never pulled into mipmap textures.
122 */
123 if (image->Border)
124 return GL_FALSE;
125
126 if (st_mesa_format_to_pipe_format(image->TexFormat->MesaFormat) != pt->format ||
127 image->IsCompressed != pt->compressed)
128 return GL_FALSE;
129
130 /* Test image dimensions against the base level image adjusted for
131 * minification. This will also catch images not present in the
132 * texture, changed targets, etc.
133 */
134 if (image->Width != pt->width[level] ||
135 image->Height != pt->height[level] ||
136 image->Depth != pt->depth[level])
137 return GL_FALSE;
138
139 return GL_TRUE;
140 }
141
142
143 #if 000
144 /* Although we use the image_offset[] array to store relative offsets
145 * to cube faces, Mesa doesn't know anything about this and expects
146 * each cube face to be treated as a separate image.
147 *
148 * These functions present that view to mesa:
149 */
150 const GLuint *
151 st_texture_depth_offsets(struct pipe_texture *pt, GLuint level)
152 {
153 static const GLuint zero = 0;
154
155 if (pt->target != PIPE_TEXTURE_3D || pt->level[level].nr_images == 1)
156 return &zero;
157 else
158 return pt->level[level].image_offset;
159 }
160
161
162 /**
163 * Return the offset to the given mipmap texture image within the
164 * texture memory buffer, in bytes.
165 */
166 GLuint
167 st_texture_image_offset(const struct pipe_texture * pt,
168 GLuint face, GLuint level)
169 {
170 if (pt->target == PIPE_TEXTURE_CUBE)
171 return (pt->level[level].level_offset +
172 pt->level[level].image_offset[face] * pt->cpp);
173 else
174 return pt->level[level].level_offset;
175 }
176 #endif
177
178
179 /**
180 * Map a teximage in a mipmap texture.
181 * \param row_stride returns row stride in bytes
182 * \param image_stride returns image stride in bytes (for 3D textures).
183 * \return address of mapping
184 */
185 GLubyte *
186 st_texture_image_map(struct st_context *st, struct st_texture_image *stImage,
187 GLuint zoffset)
188 {
189 struct pipe_screen *screen = st->pipe->screen;
190 struct pipe_texture *pt = stImage->pt;
191 DBG("%s \n", __FUNCTION__);
192
193 stImage->surface = screen->get_tex_surface(screen, pt, stImage->face,
194 stImage->level, zoffset);
195
196 return pipe_surface_map(stImage->surface);
197 }
198
199
200 void
201 st_texture_image_unmap(struct st_texture_image *stImage)
202 {
203 DBG("%s\n", __FUNCTION__);
204
205 pipe_surface_unmap(stImage->surface);
206
207 pipe_surface_reference(&stImage->surface, NULL);
208 }
209
210
211
212 /**
213 * Upload data to a rectangular sub-region. Lots of choices how to do this:
214 *
215 * - memcpy by span to current destination
216 * - upload data as new buffer and blit
217 *
218 * Currently always memcpy.
219 */
220 static void
221 st_surface_data(struct pipe_context *pipe,
222 struct pipe_surface *dst,
223 unsigned dstx, unsigned dsty,
224 const void *src, unsigned src_pitch,
225 unsigned srcx, unsigned srcy, unsigned width, unsigned height)
226 {
227 pipe_copy_rect(pipe_surface_map(dst),
228 dst->cpp,
229 dst->pitch,
230 dstx, dsty, width, height, src, src_pitch, srcx, srcy);
231
232 pipe_surface_unmap(dst);
233 }
234
235
236 /* Upload data for a particular image.
237 */
238 void
239 st_texture_image_data(struct pipe_context *pipe,
240 struct pipe_texture *dst,
241 GLuint face,
242 GLuint level,
243 void *src,
244 GLuint src_row_pitch, GLuint src_image_pitch)
245 {
246 struct pipe_screen *screen = pipe->screen;
247 GLuint depth = dst->depth[level];
248 GLuint i;
249 GLuint height = 0;
250 const GLubyte *srcUB = src;
251 struct pipe_surface *dst_surface;
252
253 DBG("%s\n", __FUNCTION__);
254 for (i = 0; i < depth; i++) {
255 height = dst->height[level];
256 if(dst->compressed)
257 height /= 4;
258
259 dst_surface = screen->get_tex_surface(screen, dst, face, level, i);
260
261 st_surface_data(pipe, dst_surface,
262 0, 0, /* dstx, dsty */
263 srcUB,
264 src_row_pitch,
265 0, 0, /* source x, y */
266 dst->width[level], height); /* width, height */
267
268 pipe_surface_reference(&dst_surface, NULL);
269
270 srcUB += src_image_pitch * dst->cpp;
271 }
272 }
273
274
275 /* Copy mipmap image between textures
276 */
277 void
278 st_texture_image_copy(struct pipe_context *pipe,
279 struct pipe_texture *dst, GLuint dstLevel,
280 struct pipe_texture *src,
281 GLuint face)
282 {
283 struct pipe_screen *screen = pipe->screen;
284 GLuint width = dst->width[dstLevel];
285 GLuint height = dst->height[dstLevel];
286 GLuint depth = dst->depth[dstLevel];
287 struct pipe_surface *src_surface;
288 struct pipe_surface *dst_surface;
289 GLuint i;
290
291 /* XXX this is a hack */
292 const GLuint copyHeight = dst->compressed ? height / 4 : height;
293
294 for (i = 0; i < depth; i++) {
295 GLuint srcLevel;
296
297 /* find src texture level of needed size */
298 for (srcLevel = 0; srcLevel <= src->last_level; srcLevel++) {
299 if (src->width[srcLevel] == width &&
300 src->height[srcLevel] == height) {
301 break;
302 }
303 }
304 assert(src->width[srcLevel] == width);
305 assert(src->height[srcLevel] == height);
306
307 dst_surface = screen->get_tex_surface(screen, dst, face, dstLevel, i);
308 src_surface = screen->get_tex_surface(screen, src, face, srcLevel, i);
309
310 pipe->surface_copy(pipe,
311 FALSE,
312 dst_surface,
313 0, 0, /* destX, Y */
314 src_surface,
315 0, 0, /* srcX, Y */
316 width, copyHeight);
317
318 pipe_surface_reference(&dst_surface, NULL);
319 pipe_surface_reference(&src_surface, NULL);
320 }
321 }