mesa/i965/i915/r200: eliminate gl_vertex_program
[mesa.git] / src / mesa / drivers / dri / i965 / gen8_viewport_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 "intel_batchbuffer.h"
28 #include "main/fbobject.h"
29 #include "main/framebuffer.h"
30 #include "main/viewport.h"
31
32 static void
33 gen8_upload_sf_clip_viewport(struct brw_context *brw)
34 {
35 struct gl_context *ctx = &brw->ctx;
36 float y_scale, y_bias;
37 const float fb_height = (float)_mesa_geometric_height(ctx->DrawBuffer);
38 const bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
39
40 /* BRW_NEW_VIEWPORT_COUNT */
41 const unsigned viewport_count = brw->clip.viewport_count;
42
43 float *vp = brw_state_batch(brw, AUB_TRACE_SF_VP_STATE,
44 16 * 4 * viewport_count,
45 64, &brw->sf.vp_offset);
46 /* Also assign to clip.vp_offset in case something uses it. */
47 brw->clip.vp_offset = brw->sf.vp_offset;
48
49 /* _NEW_BUFFERS */
50 if (render_to_fbo) {
51 y_scale = 1.0;
52 y_bias = 0;
53 } else {
54 y_scale = -1.0;
55 y_bias = fb_height;
56 }
57
58 for (unsigned i = 0; i < viewport_count; i++) {
59 float scale[3], translate[3];
60 _mesa_get_viewport_xform(ctx, i, scale, translate);
61
62 /* _NEW_VIEWPORT: Viewport Matrix Elements */
63 vp[0] = scale[0]; /* m00 */
64 vp[1] = scale[1] * y_scale; /* m11 */
65 vp[2] = scale[2]; /* m22 */
66 vp[3] = translate[0]; /* m30 */
67 vp[4] = translate[1] * y_scale + y_bias; /* m31 */
68 vp[5] = translate[2]; /* m32 */
69
70 /* Reserved */
71 vp[6] = 0;
72 vp[7] = 0;
73
74 /* According to the "Vertex X,Y Clamping and Quantization" section of the
75 * Strips and Fans documentation, objects must not have a screen-space
76 * extents of over 8192 pixels, or they may be mis-rasterized. The
77 * maximum screen space coordinates of a small object may larger, but we
78 * have no way to enforce the object size other than through clipping.
79 *
80 * The goal is to create the maximum sized guardband (8K x 8K) with the
81 * viewport rectangle in the center of the guardband. This looks weird
82 * because the hardware wants coordinates that are scaled to the viewport
83 * in NDC. In other words, an 8K x 8K viewport would have [-1,1] for X and Y.
84 * A 4K viewport would be [-2,2], 2K := [-4,4] etc.
85 *
86 * --------------------------------
87 * |Guardband |
88 * | |
89 * | ------------ |
90 * | |viewport | |
91 * | | | |
92 * | | | |
93 * | |__________| |
94 * | |
95 * | |
96 * |______________________________|
97 *
98 */
99 const float maximum_guardband_extent = 8192;
100 float gbx = maximum_guardband_extent / ctx->ViewportArray[i].Width;
101 float gby = maximum_guardband_extent / ctx->ViewportArray[i].Height;
102
103 /* _NEW_VIEWPORT: Guardband Clipping */
104 vp[8] = -gbx; /* x-min */
105 vp[9] = gbx; /* x-max */
106 vp[10] = -gby; /* y-min */
107 vp[11] = gby; /* y-max */
108
109 /* _NEW_VIEWPORT | _NEW_BUFFERS: Screen Space Viewport
110 * The hardware will take the intersection of the drawing rectangle,
111 * scissor rectangle, and the viewport extents. We don't need to be
112 * smart, and can therefore just program the viewport extents.
113 */
114 float viewport_Xmax = ctx->ViewportArray[i].X + ctx->ViewportArray[i].Width;
115 float viewport_Ymax = ctx->ViewportArray[i].Y + ctx->ViewportArray[i].Height;
116 if (render_to_fbo) {
117 vp[12] = ctx->ViewportArray[i].X;
118 vp[13] = viewport_Xmax - 1;
119 vp[14] = ctx->ViewportArray[i].Y;
120 vp[15] = viewport_Ymax - 1;
121 } else {
122 vp[12] = ctx->ViewportArray[i].X;
123 vp[13] = viewport_Xmax - 1;
124 vp[14] = fb_height - viewport_Ymax;
125 vp[15] = fb_height - ctx->ViewportArray[i].Y - 1;
126 }
127
128 vp += 16;
129 }
130
131 BEGIN_BATCH(2);
132 OUT_BATCH(_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CL << 16 | (2 - 2));
133 OUT_BATCH(brw->sf.vp_offset);
134 ADVANCE_BATCH();
135 }
136
137 const struct brw_tracked_state gen8_sf_clip_viewport = {
138 .dirty = {
139 .mesa = _NEW_BUFFERS |
140 _NEW_VIEWPORT,
141 .brw = BRW_NEW_BATCH |
142 BRW_NEW_BLORP |
143 BRW_NEW_VIEWPORT_COUNT,
144 },
145 .emit = gen8_upload_sf_clip_viewport,
146 };