r300: fix compiler bugs introduced with MRT changes.
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_tex_copy.c
1 /*
2 * Copyright (C) 2009 Maciej Cencora <m.cencora@gmail.com>
3 *
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining
7 * a 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, sublicense, 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
16 * portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 */
27
28 #include "radeon_common.h"
29 #include "radeon_texture.h"
30
31 #include "main/image.h"
32 #include "main/teximage.h"
33 #include "main/texstate.h"
34 #include "drivers/common/meta.h"
35
36 #include "radeon_mipmap_tree.h"
37
38 static GLboolean
39 do_copy_texsubimage(GLcontext *ctx,
40 GLenum target, GLint level,
41 struct radeon_tex_obj *tobj,
42 radeon_texture_image *timg,
43 GLint dstx, GLint dsty,
44 GLint x, GLint y,
45 GLsizei width, GLsizei height)
46 {
47 radeonContextPtr radeon = RADEON_CONTEXT(ctx);
48 struct radeon_renderbuffer *rrb;
49
50 if (_mesa_get_format_bits(timg->base.TexFormat, GL_DEPTH_BITS) > 0) {
51 rrb = radeon_get_depthbuffer(radeon);
52 } else {
53 rrb = radeon_get_colorbuffer(radeon);
54 }
55
56 if (!timg->mt) {
57 radeon_validate_texture_miptree(ctx, &tobj->base);
58 }
59
60 assert(rrb && rrb->bo);
61 assert(timg->mt->bo);
62 assert(timg->base.Width >= dstx + width);
63 assert(timg->base.Height >= dsty + height);
64
65 intptr_t src_offset = rrb->draw_offset;
66 intptr_t dst_offset = radeon_miptree_image_offset(timg->mt, _mesa_tex_target_to_face(target), level);
67
68 if (0) {
69 fprintf(stderr, "%s: copying to face %d, level %d\n",
70 __FUNCTION__, _mesa_tex_target_to_face(target), level);
71 fprintf(stderr, "to: x %d, y %d, offset %d\n", dstx, dsty, (uint32_t) dst_offset);
72 fprintf(stderr, "from (%dx%d) width %d, height %d, offset %d, pitch %d\n",
73 x, y, rrb->base.Width, rrb->base.Height, (uint32_t) src_offset, rrb->pitch/rrb->cpp);
74 fprintf(stderr, "src size %d, dst size %d\n", rrb->bo->size, timg->mt->bo->size);
75
76 }
77
78 /* blit from src buffer to texture */
79 return radeon->vtbl.blit(ctx, rrb->bo, src_offset, rrb->base.Format, rrb->pitch/rrb->cpp,
80 rrb->base.Width, rrb->base.Height, x, y,
81 timg->mt->bo, dst_offset, timg->base.TexFormat,
82 timg->mt->levels[level].rowstride / _mesa_get_format_bytes(timg->base.TexFormat),
83 timg->base.Width, timg->base.Height,
84 dstx, dsty, width, height, 1);
85 }
86
87 void
88 radeonCopyTexImage2D(GLcontext *ctx, GLenum target, GLint level,
89 GLenum internalFormat,
90 GLint x, GLint y, GLsizei width, GLsizei height,
91 GLint border)
92 {
93 struct gl_texture_unit *texUnit = _mesa_get_current_tex_unit(ctx);
94 struct gl_texture_object *texObj =
95 _mesa_select_tex_object(ctx, texUnit, target);
96 struct gl_texture_image *texImage =
97 _mesa_select_tex_image(ctx, texObj, target, level);
98 int srcx, srcy, dstx, dsty;
99
100 if (border)
101 goto fail;
102
103 /* Setup or redefine the texture object, mipmap tree and texture
104 * image. Don't populate yet.
105 */
106 ctx->Driver.TexImage2D(ctx, target, level, internalFormat,
107 width, height, border,
108 GL_RGBA, GL_UNSIGNED_BYTE, NULL,
109 &ctx->DefaultPacking, texObj, texImage);
110
111 srcx = x;
112 srcy = y;
113 dstx = 0;
114 dsty = 0;
115 if (!_mesa_clip_copytexsubimage(ctx,
116 &dstx, &dsty,
117 &srcx, &srcy,
118 &width, &height)) {
119 return;
120 }
121
122 if (!do_copy_texsubimage(ctx, target, level,
123 radeon_tex_obj(texObj), (radeon_texture_image *)texImage,
124 0, 0, x, y, width, height)) {
125 goto fail;
126 }
127
128 return;
129
130 fail:
131 _mesa_meta_CopyTexImage2D(ctx, target, level, internalFormat, x, y,
132 width, height, border);
133 }
134
135 void
136 radeonCopyTexSubImage2D(GLcontext *ctx, GLenum target, GLint level,
137 GLint xoffset, GLint yoffset,
138 GLint x, GLint y,
139 GLsizei width, GLsizei height)
140 {
141 struct gl_texture_unit *texUnit = _mesa_get_current_tex_unit(ctx);
142 struct gl_texture_object *texObj = _mesa_select_tex_object(ctx, texUnit, target);
143 struct gl_texture_image *texImage = _mesa_select_tex_image(ctx, texObj, target, level);
144
145 if (!do_copy_texsubimage(ctx, target, level,
146 radeon_tex_obj(texObj), (radeon_texture_image *)texImage,
147 xoffset, yoffset, x, y, width, height)) {
148
149 //DEBUG_FALLBACKS
150
151 _mesa_meta_CopyTexSubImage2D(ctx, target, level,
152 xoffset, yoffset, x, y, width, height);
153 }
154 }