i965: Account for view parameters in blit CTSI path
[mesa.git] / src / mesa / drivers / dri / i965 / intel_tex_copy.c
1 /**************************************************************************
2 *
3 * Copyright 2003 VMware, Inc.
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 VMWARE 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/mtypes.h"
29 #include "main/enums.h"
30 #include "main/image.h"
31 #include "main/teximage.h"
32 #include "main/texstate.h"
33 #include "main/fbobject.h"
34
35 #include "drivers/common/meta.h"
36
37 #include "intel_screen.h"
38 #include "intel_mipmap_tree.h"
39 #include "intel_regions.h"
40 #include "intel_fbo.h"
41 #include "intel_tex.h"
42 #include "intel_blit.h"
43 #include "brw_context.h"
44
45 #define FILE_DEBUG_FLAG DEBUG_TEXTURE
46
47
48 static bool
49 intel_copy_texsubimage(struct brw_context *brw,
50 struct intel_texture_image *intelImage,
51 GLint dstx, GLint dsty, GLint slice,
52 struct intel_renderbuffer *irb,
53 GLint x, GLint y, GLsizei width, GLsizei height)
54 {
55 const GLenum internalFormat = intelImage->base.Base.InternalFormat;
56
57 intel_prepare_render(brw);
58
59 /* glCopyTexSubImage() can be called on a multisampled renderbuffer (if
60 * that renderbuffer is associated with the window system framebuffer),
61 * however the hardware blitter can't handle this case, so fall back to
62 * meta (which can, since it uses ReadPixels).
63 */
64 if (irb->Base.Base.NumSamples != 0)
65 return false;
66
67 /* glCopyTexSubImage() can't be called on a multisampled texture. */
68 assert(intelImage->base.Base.NumSamples == 0);
69
70 if (!intelImage->mt || !irb || !irb->mt) {
71 if (unlikely(INTEL_DEBUG & DEBUG_PERF))
72 fprintf(stderr, "%s fail %p %p (0x%08x)\n",
73 __FUNCTION__, intelImage->mt, irb, internalFormat);
74 return false;
75 }
76
77 /* account for view parameters and face index */
78 int dst_level = intelImage->base.Base.Level +
79 intelImage->base.Base.TexObject->MinLevel;
80 int dst_slice = slice + intelImage->base.Base.Face +
81 intelImage->base.Base.TexObject->MinLayer;
82
83 /* blit from src buffer to texture */
84 if (!intel_miptree_blit(brw,
85 irb->mt, irb->mt_level, irb->mt_layer,
86 x, y, irb->Base.Base.Name == 0,
87 intelImage->mt, dst_level, dst_slice,
88 dstx, dsty, false,
89 width, height, GL_COPY)) {
90 return false;
91 }
92
93 return true;
94 }
95
96
97 static void
98 intelCopyTexSubImage(struct gl_context *ctx, GLuint dims,
99 struct gl_texture_image *texImage,
100 GLint xoffset, GLint yoffset, GLint slice,
101 struct gl_renderbuffer *rb,
102 GLint x, GLint y,
103 GLsizei width, GLsizei height)
104 {
105 struct brw_context *brw = brw_context(ctx);
106
107 /* Try BLORP first. It can handle almost everything. */
108 if (brw_blorp_copytexsubimage(brw, rb, texImage, slice, x, y,
109 xoffset, yoffset, width, height))
110 return;
111
112 /* Next, try the BLT engine. */
113 if (intel_copy_texsubimage(brw,
114 intel_texture_image(texImage),
115 xoffset, yoffset, slice,
116 intel_renderbuffer(rb), x, y, width, height)) {
117 return;
118 }
119
120 /* Finally, fall back to meta. This will likely be slow. */
121 perf_debug("%s - fallback to swrast\n", __FUNCTION__);
122 _mesa_meta_CopyTexSubImage(ctx, dims, texImage,
123 xoffset, yoffset, slice,
124 rb, x, y, width, height);
125 }
126
127
128 void
129 intelInitTextureCopyImageFuncs(struct dd_function_table *functions)
130 {
131 functions->CopyTexSubImage = intelCopyTexSubImage;
132 }