summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2018-01-25 02:09:59 -0800
committerKenneth Graunke <[email protected]>2019-02-21 10:26:05 -0800
commit6ecc93f7640c60362a54bba1691de5a203e460f6 (patch)
treedd82b804813516934f2476c2a3734a6ad17642e4
parentbba13b150157c3ef6eae36a1479f5079fea8aac2 (diff)
iris: bits of WM key
-rw-r--r--src/gallium/drivers/iris/iris_state.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/src/gallium/drivers/iris/iris_state.c b/src/gallium/drivers/iris/iris_state.c
index b0688379502..9ad3fd6a950 100644
--- a/src/gallium/drivers/iris/iris_state.c
+++ b/src/gallium/drivers/iris/iris_state.c
@@ -379,6 +379,8 @@ struct iris_blend_state {
uint32_t blend_state[GENX(BLEND_STATE_length)];
uint32_t blend_entries[BRW_MAX_DRAW_BUFFERS *
GENX(BLEND_STATE_ENTRY_length)];
+
+ bool alpha_to_coverage; /* for shader key */
};
static void *
@@ -387,6 +389,8 @@ iris_create_blend_state(struct pipe_context *ctx,
{
struct iris_blend_state *cso = malloc(sizeof(struct iris_blend_state));
+ cso->alpha_to_coverage = state->alpha_to_coverage;
+
iris_pack_state(GENX(BLEND_STATE), cso->blend_state, bs) {
bs.AlphaToCoverageEnable = state->alpha_to_coverage;
bs.IndependentAlphaBlendEnable = state->independent_blend_enable;
@@ -530,6 +534,7 @@ struct iris_rasterizer_state {
uint32_t line_stipple[GENX(3DSTATE_LINE_STIPPLE_length)];
bool flatshade; /* for shader state */
+ bool clamp_fragment_color; /* for shader state */
bool light_twoside; /* for shader state */
bool rasterizer_discard; /* for 3DSTATE_STREAMOUT */
bool half_pixel_center; /* for 3DSTATE_MULTISAMPLE */
@@ -559,6 +564,7 @@ iris_create_rasterizer_state(struct pipe_context *ctx,
#endif
cso->flatshade = state->flatshade;
+ cso->clamp_fragment_color = state->clamp_fragment_color;
cso->light_twoside = state->light_twoside;
cso->rasterizer_discard = state->rasterizer_discard;
cso->half_pixel_center = state->half_pixel_center;
@@ -1400,16 +1406,19 @@ iris_populate_fs_key(const struct iris_context *ice,
/* XXX: dirty flags? */
struct pipe_framebuffer_state *fb = &ice->state.framebuffer;
- //struct iris_depth_stencil_alpha_state *zsa = ice->state.framebuffer;
- // XXX: can't access iris structs outside iris_state.c :(
- // XXX: maybe just move these to iris_state.c, honestly...they're more
- // about state than programs...
+ struct iris_depth_stencil_alpha_state *zsa = ice->state.cso_zsa;
+ struct iris_rasterizer_state *rast = ice->state.cso_rast;
+ struct iris_blend_state *blend = ice->state.cso_blend;
key->nr_color_regions = fb->nr_cbufs;
+ key->clamp_fragment_color = rast->clamp_fragment_color;
+
+ key->replicate_alpha = fb->nr_cbufs > 1 &&
+ (zsa->alpha.enabled || blend->alpha_to_coverage);
+
// key->force_dual_color_blend for unigine
#if 0
- //key->replicate_alpha = fb->nr_cbufs > 1 && alpha test or alpha to coverage
if (cso_rast->multisample) {
key->persample_interp =
ctx->Multisample.SampleShading &&