Merge commit 'origin/master' into gallium-0.2
[mesa.git] / src / gallium / drivers / i965simple / brw_surface.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 "brw_blit.h"
29 #include "brw_context.h"
30 #include "brw_state.h"
31 #include "pipe/p_defines.h"
32 #include "pipe/p_inlines.h"
33 #include "pipe/p_winsys.h"
34 #include "util/u_tile.h"
35 #include "util/u_rect.h"
36
37
38
39 /* Assumes all values are within bounds -- no checking at this level -
40 * do it higher up if required.
41 */
42 static void
43 brw_surface_copy(struct pipe_context *pipe,
44 boolean do_flip,
45 struct pipe_surface *dst,
46 unsigned dstx, unsigned dsty,
47 struct pipe_surface *src,
48 unsigned srcx, unsigned srcy, unsigned width, unsigned height)
49 {
50 assert( dst != src );
51 assert( dst->block.size == src->block.size );
52 assert( dst->block.width == src->block.height );
53 assert( dst->block.height == src->block.height );
54
55 if (0) {
56 void *dst_map = pipe->screen->surface_map( pipe->screen,
57 dst,
58 PIPE_BUFFER_USAGE_CPU_WRITE );
59
60 const void *src_map = pipe->screen->surface_map( pipe->screen,
61 src,
62 PIPE_BUFFER_USAGE_CPU_READ );
63
64 pipe_copy_rect(dst_map,
65 &dst->block,
66 dst->stride,
67 dstx, dsty,
68 width, height,
69 src_map,
70 do_flip ? -(int) src->stride : src->stride,
71 srcx, do_flip ? height - 1 - srcy : srcy);
72
73 pipe->screen->surface_unmap(pipe->screen, src);
74 pipe->screen->surface_unmap(pipe->screen, dst);
75 }
76 else {
77 assert(dst->block.width == 1);
78 assert(dst->block.height == 1);
79 brw_copy_blit(brw_context(pipe),
80 do_flip,
81 dst->block.size,
82 (short) src->stride/src->block.size, src->buffer, src->offset, FALSE,
83 (short) dst->stride/dst->block.size, dst->buffer, dst->offset, FALSE,
84 (short) srcx, (short) srcy, (short) dstx, (short) dsty,
85 (short) width, (short) height, PIPE_LOGICOP_COPY);
86 }
87 }
88
89
90 static void
91 brw_surface_fill(struct pipe_context *pipe,
92 struct pipe_surface *dst,
93 unsigned dstx, unsigned dsty,
94 unsigned width, unsigned height, unsigned value)
95 {
96 if (0) {
97 void *dst_map = pipe->screen->surface_map( pipe->screen,
98 dst,
99 PIPE_BUFFER_USAGE_CPU_WRITE );
100
101 pipe_fill_rect(dst_map, &dst->block, dst->stride, dstx, dsty, width, height, value);
102
103 pipe->screen->surface_unmap(pipe->screen, dst);
104 }
105 else {
106 assert(dst->block.width == 1);
107 assert(dst->block.height == 1);
108 brw_fill_blit(brw_context(pipe),
109 dst->block.size,
110 (short) dst->stride/dst->block.size,
111 dst->buffer, dst->offset, FALSE,
112 (short) dstx, (short) dsty,
113 (short) width, (short) height,
114 value);
115 }
116 }
117
118
119 void
120 brw_init_surface_functions(struct brw_context *brw)
121 {
122 brw->pipe.surface_copy = brw_surface_copy;
123 brw->pipe.surface_fill = brw_surface_fill;
124 }