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