i965: Disable clipper statistics when meta operations are in progress.
[mesa.git] / src / mesa / drivers / dri / i965 / gen7_clip_state.c
1 /*
2 * Copyright © 2011 Intel Corporation
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 (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include "brw_context.h"
25 #include "brw_state.h"
26 #include "brw_defines.h"
27 #include "brw_util.h"
28 #include "intel_batchbuffer.h"
29 #include "main/fbobject.h"
30
31 static void
32 upload_clip_state(struct brw_context *brw)
33 {
34 struct intel_context *intel = &brw->intel;
35 struct gl_context *ctx = &intel->ctx;
36 uint32_t dw1 = 0, dw2 = 0;
37
38 /* _NEW_BUFFERS */
39 struct gl_framebuffer *fb = ctx->DrawBuffer;
40 bool render_to_fbo = _mesa_is_user_fbo(fb);
41
42 /* BRW_NEW_META_IN_PROGRESS */
43 if (!brw->meta_in_progress)
44 dw1 |= GEN6_CLIP_STATISTICS_ENABLE;
45
46 /* CACHE_NEW_WM_PROG */
47 if (brw->wm.prog_data->barycentric_interp_modes &
48 BRW_WM_NONPERSPECTIVE_BARYCENTRIC_BITS) {
49 dw2 |= GEN6_CLIP_NON_PERSPECTIVE_BARYCENTRIC_ENABLE;
50 }
51
52 dw1 |= GEN7_CLIP_EARLY_CULL;
53
54 /* _NEW_POLYGON */
55 if ((ctx->Polygon.FrontFace == GL_CCW) ^ render_to_fbo)
56 dw1 |= GEN7_CLIP_WINDING_CCW;
57
58 if (ctx->Polygon.CullFlag) {
59 switch (ctx->Polygon.CullFaceMode) {
60 case GL_FRONT:
61 dw1 |= GEN7_CLIP_CULLMODE_FRONT;
62 break;
63 case GL_BACK:
64 dw1 |= GEN7_CLIP_CULLMODE_BACK;
65 break;
66 case GL_FRONT_AND_BACK:
67 dw1 |= GEN7_CLIP_CULLMODE_BOTH;
68 break;
69 default:
70 assert(!"Should not get here: invalid CullFlag");
71 break;
72 }
73 } else {
74 dw1 |= GEN7_CLIP_CULLMODE_NONE;
75 }
76
77 /* _NEW_TRANSFORM */
78 if (!ctx->Transform.DepthClamp)
79 dw2 |= GEN6_CLIP_Z_TEST;
80
81 /* _NEW_LIGHT */
82 if (ctx->Light.ProvokingVertex == GL_FIRST_VERTEX_CONVENTION) {
83 dw2 |=
84 (0 << GEN6_CLIP_TRI_PROVOKE_SHIFT) |
85 (1 << GEN6_CLIP_TRIFAN_PROVOKE_SHIFT) |
86 (0 << GEN6_CLIP_LINE_PROVOKE_SHIFT);
87 } else {
88 dw2 |=
89 (2 << GEN6_CLIP_TRI_PROVOKE_SHIFT) |
90 (2 << GEN6_CLIP_TRIFAN_PROVOKE_SHIFT) |
91 (1 << GEN6_CLIP_LINE_PROVOKE_SHIFT);
92 }
93
94 /* _NEW_TRANSFORM */
95 dw2 |= (ctx->Transform.ClipPlanesEnabled <<
96 GEN6_USER_CLIP_CLIP_DISTANCES_SHIFT);
97
98 if (ctx->Viewport.X == 0 &&
99 ctx->Viewport.Y == 0 &&
100 ctx->Viewport.Width == fb->Width &&
101 ctx->Viewport.Height == fb->Height) {
102 dw2 |= GEN6_CLIP_GB_TEST;
103 }
104
105 BEGIN_BATCH(4);
106 OUT_BATCH(_3DSTATE_CLIP << 16 | (4 - 2));
107 OUT_BATCH(dw1);
108 OUT_BATCH(GEN6_CLIP_ENABLE |
109 GEN6_CLIP_API_OGL |
110 GEN6_CLIP_MODE_NORMAL |
111 GEN6_CLIP_XY_TEST |
112 dw2);
113 OUT_BATCH(U_FIXED(0.125, 3) << GEN6_CLIP_MIN_POINT_WIDTH_SHIFT |
114 U_FIXED(255.875, 3) << GEN6_CLIP_MAX_POINT_WIDTH_SHIFT |
115 GEN6_CLIP_FORCE_ZERO_RTAINDEX);
116 ADVANCE_BATCH();
117 }
118
119 const struct brw_tracked_state gen7_clip_state = {
120 .dirty = {
121 .mesa = (_NEW_BUFFERS |
122 _NEW_POLYGON |
123 _NEW_LIGHT |
124 _NEW_TRANSFORM),
125 .brw = BRW_NEW_CONTEXT | BRW_NEW_META_IN_PROGRESS,
126 .cache = CACHE_NEW_WM_PROG
127 },
128 .emit = upload_clip_state,
129 };