Merge branch 'softpipe-opt'
[mesa.git] / src / mesa / drivers / dri / r600 / r700_clear.c
1 /*
2 * Copyright (C) 2008-2009 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 */
21
22 /*
23 * Authors:
24 * Richard Li <RichardZ.Li@amd.com>, <richardradeon@gmail.com>
25 * CooperYuan <cooper.yuan@amd.com>, <cooperyuan@gmail.com>
26 */
27
28 #include "main/glheader.h"
29 #include "main/context.h"
30 #include "main/macros.h"
31 #include "main/imports.h"
32 #include "main/mtypes.h"
33 #include "main/enums.h"
34 #include "swrast/swrast.h"
35
36 #include "radeon_lock.h"
37 #include "r600_context.h"
38
39 #include "r700_shaderinst.h"
40 #include "r600_emit.h"
41 #include "r700_clear.h"
42
43 static GLboolean r700ClearFast(context_t *context, GLbitfield mask)
44 {
45 /* TODO, fast clear need implementation */
46 return GL_FALSE;
47 }
48
49 void r700Clear(GLcontext * ctx, GLbitfield mask)
50 {
51 context_t *context = R700_CONTEXT(ctx);
52 __DRIdrawablePrivate *dPriv = radeon_get_drawable(&context->radeon);
53 const GLuint colorMask = *((GLuint *) & ctx->Color.ColorMask);
54 GLbitfield swrast_mask = 0, tri_mask = 0;
55 int i;
56 struct gl_framebuffer *fb = ctx->DrawBuffer;
57
58 radeon_print(RADEON_RENDER, RADEON_VERBOSE, "%s %x\n", __func__, mask);
59
60 if( GL_TRUE == r700ClearFast(context, mask) )
61 {
62 return;
63 }
64 if (!context->radeon.radeonScreen->driScreen->dri2.enabled) {
65 LOCK_HARDWARE(&context->radeon);
66 UNLOCK_HARDWARE(&context->radeon);
67 if (dPriv->numClipRects == 0)
68 return;
69 }
70
71 R600_NEWPRIM(context);
72
73 if (colorMask == ~0)
74 tri_mask |= (mask & BUFFER_BITS_COLOR);
75 else
76 tri_mask |= (mask & (BUFFER_BIT_FRONT_LEFT | BUFFER_BIT_BACK_LEFT));
77
78
79 /* HW stencil */
80 if (mask & BUFFER_BIT_STENCIL) {
81 tri_mask |= BUFFER_BIT_STENCIL;
82 }
83
84 /* HW depth */
85 if (mask & BUFFER_BIT_DEPTH) {
86 tri_mask |= BUFFER_BIT_DEPTH;
87 }
88
89 /* If we're doing a tri pass for depth/stencil, include a likely color
90 * buffer with it.
91 */
92
93 for (i = 0; i < BUFFER_COUNT; i++) {
94 GLuint bufBit = 1 << i;
95 if ((tri_mask) & bufBit) {
96 if (!fb->Attachment[i].Renderbuffer->ClassID) {
97 tri_mask &= ~bufBit;
98 swrast_mask |= bufBit;
99 }
100 }
101 }
102
103 /* SW fallback clearing */
104 swrast_mask = mask & ~tri_mask;
105
106 if (tri_mask) {
107 radeonUserClear(ctx, tri_mask);
108 }
109
110 if (swrast_mask) {
111 radeon_print(RADEON_FALLBACKS, RADEON_IMPORTANT, "%s: swrast clear, mask: %x\n",
112 __FUNCTION__, swrast_mask);
113 _swrast_Clear(ctx, swrast_mask);
114 }
115
116 }
117
118