mesa: add/update comments in _mesa_copy_buffer_subdata()
[mesa.git] / src / mesa / drivers / dri / intel / intel_pixel_copy.c
1 /**************************************************************************
2 *
3 * Copyright 2003 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 "main/glheader.h"
29 #include "main/image.h"
30 #include "main/state.h"
31 #include "main/mtypes.h"
32 #include "main/condrender.h"
33 #include "drivers/common/meta.h"
34
35 #include "intel_context.h"
36 #include "intel_buffers.h"
37 #include "intel_mipmap_tree.h"
38 #include "intel_regions.h"
39 #include "intel_pixel.h"
40 #include "intel_fbo.h"
41
42 #define FILE_DEBUG_FLAG DEBUG_PIXEL
43
44 /**
45 * Check if any fragment operations are in effect which might effect
46 * glCopyPixels. Differs from intel_check_blit_fragment_ops in that
47 * we allow Scissor.
48 */
49 static bool
50 intel_check_copypixel_blit_fragment_ops(struct gl_context * ctx)
51 {
52 if (ctx->NewState)
53 _mesa_update_state(ctx);
54
55 /* Could do logicop with the blitter:
56 */
57 return !(ctx->_ImageTransferState ||
58 ctx->Color.AlphaEnabled ||
59 ctx->Depth.Test ||
60 ctx->Fog.Enabled ||
61 ctx->Stencil._Enabled ||
62 !ctx->Color.ColorMask[0][0] ||
63 !ctx->Color.ColorMask[0][1] ||
64 !ctx->Color.ColorMask[0][2] ||
65 !ctx->Color.ColorMask[0][3] ||
66 ctx->Texture._EnabledUnits ||
67 ctx->FragmentProgram._Enabled ||
68 ctx->Color.BlendEnabled);
69 }
70
71
72 /**
73 * CopyPixels with the blitter. Don't support zooming, pixel transfer, etc.
74 */
75 static bool
76 do_blit_copypixels(struct gl_context * ctx,
77 GLint srcx, GLint srcy,
78 GLsizei width, GLsizei height,
79 GLint dstx, GLint dsty, GLenum type)
80 {
81 struct intel_context *intel = intel_context(ctx);
82 struct gl_framebuffer *fb = ctx->DrawBuffer;
83 struct gl_framebuffer *read_fb = ctx->ReadBuffer;
84 GLint orig_dstx;
85 GLint orig_dsty;
86 GLint orig_srcx;
87 GLint orig_srcy;
88 bool flip = false;
89 struct intel_renderbuffer *draw_irb = NULL;
90 struct intel_renderbuffer *read_irb = NULL;
91
92 /* Update draw buffer bounds */
93 _mesa_update_state(ctx);
94
95 switch (type) {
96 case GL_COLOR:
97 if (fb->_NumColorDrawBuffers != 1) {
98 fallback_debug("glCopyPixels() fallback: MRT\n");
99 return false;
100 }
101
102 draw_irb = intel_renderbuffer(fb->_ColorDrawBuffers[0]);
103 read_irb = intel_renderbuffer(read_fb->_ColorReadBuffer);
104 break;
105 case GL_DEPTH_STENCIL_EXT:
106 draw_irb = intel_renderbuffer(fb->Attachment[BUFFER_DEPTH].Renderbuffer);
107 read_irb =
108 intel_renderbuffer(read_fb->Attachment[BUFFER_DEPTH].Renderbuffer);
109 break;
110 case GL_DEPTH:
111 fallback_debug("glCopyPixels() fallback: GL_DEPTH\n");
112 return false;
113 case GL_STENCIL:
114 fallback_debug("glCopyPixels() fallback: GL_STENCIL\n");
115 return false;
116 default:
117 fallback_debug("glCopyPixels(): Unknown type\n");
118 return false;
119 }
120
121 if (!draw_irb) {
122 fallback_debug("glCopyPixels() fallback: missing draw buffer\n");
123 return false;
124 }
125
126 if (!read_irb) {
127 fallback_debug("glCopyPixels() fallback: missing read buffer\n");
128 return false;
129 }
130
131 if (draw_irb->Base.Format != read_irb->Base.Format &&
132 !(draw_irb->Base.Format == MESA_FORMAT_XRGB8888 &&
133 read_irb->Base.Format == MESA_FORMAT_ARGB8888)) {
134 fallback_debug("glCopyPixels() fallback: mismatched formats (%s -> %s\n",
135 _mesa_get_format_name(read_irb->Base.Format),
136 _mesa_get_format_name(draw_irb->Base.Format));
137 return false;
138 }
139
140 /* Copypixels can be more than a straight copy. Ensure all the
141 * extra operations are disabled:
142 */
143 if (!intel_check_copypixel_blit_fragment_ops(ctx) ||
144 ctx->Pixel.ZoomX != 1.0F || ctx->Pixel.ZoomY != 1.0F)
145 return false;
146
147 intel_prepare_render(intel);
148
149 intel_flush(&intel->ctx);
150
151 /* Clip to destination buffer. */
152 orig_dstx = dstx;
153 orig_dsty = dsty;
154 if (!_mesa_clip_to_region(fb->_Xmin, fb->_Ymin,
155 fb->_Xmax, fb->_Ymax,
156 &dstx, &dsty, &width, &height))
157 goto out;
158 /* Adjust src coords for our post-clipped destination origin */
159 srcx += dstx - orig_dstx;
160 srcy += dsty - orig_dsty;
161
162 /* Clip to source buffer. */
163 orig_srcx = srcx;
164 orig_srcy = srcy;
165 if (!_mesa_clip_to_region(0, 0,
166 read_fb->Width, read_fb->Height,
167 &srcx, &srcy, &width, &height))
168 goto out;
169 /* Adjust dst coords for our post-clipped source origin */
170 dstx += srcx - orig_srcx;
171 dsty += srcy - orig_srcy;
172
173 /* Flip dest Y if it's a window system framebuffer. */
174 if (fb->Name == 0) {
175 /* copypixels to a window system framebuffer */
176 dsty = fb->Height - dsty - height;
177 flip = !flip;
178 }
179
180 /* Flip source Y if it's a window system framebuffer. */
181 if (read_fb->Name == 0) {
182 srcy = read_fb->Height - srcy - height;
183 flip = !flip;
184 }
185
186 srcx += read_irb->draw_x;
187 srcy += read_irb->draw_y;
188 dstx += draw_irb->draw_x;
189 dsty += draw_irb->draw_y;
190
191 if (!intel_region_copy(intel,
192 draw_irb->mt->region, 0, dstx, dsty,
193 read_irb->mt->region, 0, srcx, srcy,
194 width, height, flip,
195 ctx->Color.ColorLogicOpEnabled ?
196 ctx->Color.LogicOp : GL_COPY)) {
197 DBG("%s: blit failure\n", __FUNCTION__);
198 return false;
199 }
200
201 out:
202 intel_check_front_buffer_rendering(intel);
203
204 DBG("%s: success\n", __FUNCTION__);
205 return true;
206 }
207
208
209 void
210 intelCopyPixels(struct gl_context * ctx,
211 GLint srcx, GLint srcy,
212 GLsizei width, GLsizei height,
213 GLint destx, GLint desty, GLenum type)
214 {
215 DBG("%s\n", __FUNCTION__);
216
217 if (!_mesa_check_conditional_render(ctx))
218 return;
219
220 if (do_blit_copypixels(ctx, srcx, srcy, width, height, destx, desty, type))
221 return;
222
223 /* this will use swrast if needed */
224 _mesa_meta_CopyPixels(ctx, srcx, srcy, width, height, destx, desty, type);
225 }