i965: "Fix" aux offsets
[mesa.git] / src / mesa / drivers / dri / i965 / gen6_viewport_state.c
1 /*
2 * Copyright © 2009 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 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28 #include "brw_context.h"
29 #include "brw_state.h"
30 #include "brw_defines.h"
31 #include "intel_batchbuffer.h"
32 #include "main/fbobject.h"
33 #include "main/framebuffer.h"
34 #include "main/viewport.h"
35
36 /* The clip VP defines the guardband region where expensive clipping is skipped
37 * and fragments are allowed to be generated and clipped out cheaply by the SF.
38 */
39 static void
40 gen6_upload_clip_vp(struct brw_context *brw)
41 {
42 struct gl_context *ctx = &brw->ctx;
43 struct brw_clipper_viewport *vp;
44
45 /* BRW_NEW_VIEWPORT_COUNT */
46 const unsigned viewport_count = brw->clip.viewport_count;
47
48 vp = brw_state_batch(brw, AUB_TRACE_CLIP_VP_STATE,
49 sizeof(*vp) * viewport_count, 32, &brw->clip.vp_offset);
50
51 for (unsigned i = 0; i < viewport_count; i++) {
52 /* According to the "Vertex X,Y Clamping and Quantization" section of the
53 * Strips and Fans documentation, objects must not have a screen-space
54 * extents of over 8192 pixels, or they may be mis-rasterized. The maximum
55 * screen space coordinates of a small object may larger, but we have no
56 * way to enforce the object size other than through clipping.
57 *
58 * If you're surprised that we set clip to -gbx to +gbx and it seems like
59 * we'll end up with 16384 wide, note that for a 8192-wide render target,
60 * we'll end up with a normal (-1, 1) clip volume that just covers the
61 * drawable.
62 */
63 const float maximum_post_clamp_delta = 8192;
64 float gbx = maximum_post_clamp_delta / ctx->ViewportArray[i].Width;
65 float gby = maximum_post_clamp_delta / ctx->ViewportArray[i].Height;
66
67 vp[i].xmin = -gbx;
68 vp[i].xmax = gbx;
69 vp[i].ymin = -gby;
70 vp[i].ymax = gby;
71 }
72
73 brw->ctx.NewDriverState |= BRW_NEW_CLIP_VP;
74 }
75
76 const struct brw_tracked_state gen6_clip_vp = {
77 .dirty = {
78 .mesa = _NEW_VIEWPORT,
79 .brw = BRW_NEW_BATCH |
80 BRW_NEW_BLORP |
81 BRW_NEW_VIEWPORT_COUNT,
82 },
83 .emit = gen6_upload_clip_vp,
84 };
85
86 static void
87 gen6_upload_sf_vp(struct brw_context *brw)
88 {
89 struct gl_context *ctx = &brw->ctx;
90 struct gen6_sf_viewport *sfv;
91 GLfloat y_scale, y_bias;
92 const bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
93
94 /* BRW_NEW_VIEWPORT_COUNT */
95 const unsigned viewport_count = brw->clip.viewport_count;
96
97 sfv = brw_state_batch(brw, AUB_TRACE_SF_VP_STATE,
98 sizeof(*sfv) * viewport_count,
99 32, &brw->sf.vp_offset);
100 memset(sfv, 0, sizeof(*sfv) * viewport_count);
101
102 /* _NEW_BUFFERS */
103 if (render_to_fbo) {
104 y_scale = 1.0;
105 y_bias = 0.0;
106 } else {
107 y_scale = -1.0;
108 y_bias = (float)_mesa_geometric_height(ctx->DrawBuffer);
109 }
110
111 for (unsigned i = 0; i < viewport_count; i++) {
112 float scale[3], translate[3];
113
114 /* _NEW_VIEWPORT */
115 _mesa_get_viewport_xform(ctx, i, scale, translate);
116 sfv[i].m00 = scale[0];
117 sfv[i].m11 = scale[1] * y_scale;
118 sfv[i].m22 = scale[2];
119 sfv[i].m30 = translate[0];
120 sfv[i].m31 = translate[1] * y_scale + y_bias;
121 sfv[i].m32 = translate[2];
122
123 }
124
125 brw->ctx.NewDriverState |= BRW_NEW_SF_VP;
126 }
127
128 const struct brw_tracked_state gen6_sf_vp = {
129 .dirty = {
130 .mesa = _NEW_BUFFERS |
131 _NEW_VIEWPORT,
132 .brw = BRW_NEW_BATCH |
133 BRW_NEW_BLORP |
134 BRW_NEW_VIEWPORT_COUNT,
135 },
136 .emit = gen6_upload_sf_vp,
137 };
138
139 static void upload_viewport_state_pointers(struct brw_context *brw)
140 {
141 BEGIN_BATCH(4);
142 OUT_BATCH(_3DSTATE_VIEWPORT_STATE_POINTERS << 16 | (4 - 2) |
143 GEN6_CC_VIEWPORT_MODIFY |
144 GEN6_SF_VIEWPORT_MODIFY |
145 GEN6_CLIP_VIEWPORT_MODIFY);
146 OUT_BATCH(brw->clip.vp_offset);
147 OUT_BATCH(brw->sf.vp_offset);
148 OUT_BATCH(brw->cc.vp_offset);
149 ADVANCE_BATCH();
150 }
151
152 const struct brw_tracked_state gen6_viewport_state = {
153 .dirty = {
154 .mesa = 0,
155 .brw = BRW_NEW_BATCH |
156 BRW_NEW_BLORP |
157 BRW_NEW_CC_VP |
158 BRW_NEW_CLIP_VP |
159 BRW_NEW_SF_VP |
160 BRW_NEW_STATE_BASE_ADDRESS,
161 },
162 .emit = upload_viewport_state_pointers,
163 };