summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965/brw_cc.c
blob: 76759304eb02867f160b57e13e1e8810050f73be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
 Copyright (C) Intel Corp.  2006.  All Rights Reserved.
 Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to
 develop this 3D driver.
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
 "Software"), to deal in the Software without restriction, including
 without limitation the rights to use, copy, modify, merge, publish,
 distribute, sublicense, and/or sell copies of the Software, and to
 permit persons to whom the Software is furnished to do so, subject to
 the following conditions:
 
 The above copyright notice and this permission notice (including the
 next paragraph) shall be included in all copies or substantial
 portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
 **********************************************************************/
 /*
  * Authors:
  *   Keith Whitwell <keith@tungstengraphics.com>
  */


#include "brw_context.h"
#include "brw_state.h"
#include "brw_defines.h"


struct sane_viewport {
   float top;
   float left;
   float width;
   float height;
   float near;
   float far;
};

static void calc_sane_viewport( const struct pipe_viewport_state *vp,
				struct sane_viewport *svp )
{
   /* XXX fix me, obviously.
    */
   svp->top = 0;
   svp->left = 0;
   svp->width = 250;
   svp->height = 250;
   svp->near = 0;
   svp->far = 1;
}

static void prepare_cc_vp( struct brw_context *brw )
{
   struct brw_cc_viewport ccv;
   struct sane_viewport svp;

   memset(&ccv, 0, sizeof(ccv));

   /* PIPE_NEW_VIEWPORT */
   calc_sane_viewport( &brw->curr.vp, &svp );

   ccv.min_depth = svp.near;
   ccv.max_depth = svp.far;

   brw->sws->bo_unreference(brw->cc.vp_bo);
   brw->cc.vp_bo = brw_cache_data( &brw->cache, BRW_CC_VP, &ccv, NULL, 0 );
}

const struct brw_tracked_state brw_cc_vp = {
   .dirty = {
      .mesa = PIPE_NEW_VIEWPORT,
      .brw = BRW_NEW_CONTEXT,
      .cache = 0
   },
   .prepare = prepare_cc_vp
};

struct brw_cc_unit_key {
   struct brw_cc0 cc0;
   struct brw_cc1 cc1;
   struct brw_cc2 cc2;
   struct brw_cc3 cc3;
   struct brw_cc5 cc5;
   struct brw_cc6 cc6;
   struct brw_cc7 cc7;
};

/* A long-winded way to OR two unsigned integers together:
 */
static INLINE struct brw_cc3
combine_cc3( struct brw_cc3 a, struct brw_cc3 b )
{
   union { struct brw_cc3 cc3; unsigned i; } ca, cb;
   ca.cc3 = a;
   cb.cc3 = b;
   ca.i |= cb.i;
   return ca.cc3;
}

static void
cc_unit_populate_key(const struct brw_context *brw,
		     struct brw_cc_unit_key *key)
{
   key->cc0 = brw->curr.zstencil->cc0;
   key->cc1 = brw->curr.zstencil->cc1;
   key->cc2 = brw->curr.zstencil->cc2;
   key->cc3 = combine_cc3( brw->curr.zstencil->cc3, brw->curr.blend->cc3 );
   key->cc5 = brw->curr.blend->cc5;
   key->cc6 = brw->curr.blend->cc6;
   key->cc7 = brw->curr.blend->cc7;
}

/**
 * Creates the state cache entry for the given CC unit key.
 */
static struct brw_winsys_buffer *
cc_unit_create_from_key(struct brw_context *brw, struct brw_cc_unit_key *key)
{
   struct brw_cc_unit_state cc;
   struct brw_winsys_buffer *bo;

   memset(&cc, 0, sizeof(cc));

   cc.cc0 = key->cc0;
   cc.cc1 = key->cc1;
   cc.cc2 = key->cc2;
   cc.cc3 = key->cc3;

   /* CACHE_NEW_CC_VP */
   cc.cc4.cc_viewport_state_offset = brw->cc.vp_bo->offset >> 5; /* reloc */

   cc.cc5 = key->cc5;
   cc.cc6 = key->cc6;
   cc.cc7 = key->cc7;

   bo = brw_upload_cache(&brw->cache, BRW_CC_UNIT,
			 key, sizeof(*key),
			 &brw->cc.vp_bo, 1,
			 &cc, sizeof(cc),
			 NULL, NULL);

   /* Emit CC viewport relocation */
   brw->sws->bo_emit_reloc(bo,
			   I915_GEM_DOMAIN_INSTRUCTION,
			   0,
			   0,
			   offsetof(struct brw_cc_unit_state, cc4),
			   brw->cc.vp_bo);

   return bo;
}

static void prepare_cc_unit( struct brw_context *brw )
{
   struct brw_cc_unit_key key;

   cc_unit_populate_key(brw, &key);

   brw->sws->bo_unreference(brw->cc.state_bo);
   brw->cc.state_bo = brw_search_cache(&brw->cache, BRW_CC_UNIT,
				       &key, sizeof(key),
				       &brw->cc.vp_bo, 1,
				       NULL);

   if (brw->cc.state_bo == NULL)
      brw->cc.state_bo = cc_unit_create_from_key(brw, &key);
}

const struct brw_tracked_state brw_cc_unit = {
   .dirty = {
      .mesa = PIPE_NEW_DEPTH_STENCIL_ALPHA | PIPE_NEW_BLEND,
      .brw = 0,
      .cache = CACHE_NEW_CC_VP
   },
   .prepare = prepare_cc_unit,
};