diff options
author | Roland Scheidegger <[email protected]> | 2009-12-14 18:36:33 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2009-12-14 18:36:33 +0100 |
commit | a0127b6ced257919180ba3a1bf534b68d9c750be (patch) | |
tree | 2b7393c210947a009b654c07da9c4732cc51bade /src/mesa/state_tracker/st_atom_shader.c | |
parent | a08e348a84f57ed5e8bf5888f1ce13934d2ce8fa (diff) |
gallium: more work for edgeflags changes
fixes, cleanups, etc.
not working yet
Diffstat (limited to 'src/mesa/state_tracker/st_atom_shader.c')
-rw-r--r-- | src/mesa/state_tracker/st_atom_shader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_atom_shader.c b/src/mesa/state_tracker/st_atom_shader.c index e209634c904..629bf8953eb 100644 --- a/src/mesa/state_tracker/st_atom_shader.c +++ b/src/mesa/state_tracker/st_atom_shader.c @@ -113,8 +113,8 @@ find_translated_vp(struct st_context *st, * the input to the output. We'll need to use similar logic to set * up the extra vertex_element input for edgeflags. */ - key.passthrough_edgeflags = (ctx->Polygon.FrontMode != GL_FILL || - ctx->Polygon.BackMode != GL_FILL); + key.passthrough_edgeflags = (st->ctx->Polygon.FrontMode != GL_FILL || + st->ctx->Polygon.BackMode != GL_FILL); /* Do we need to throw away old translations after a change in the |