summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/svga/svga_state_rss.c
diff options
context:
space:
mode:
authorRoland Scheidegger <sroland@vmware.com>2010-02-12 21:43:45 +0100
committerRoland Scheidegger <sroland@vmware.com>2010-02-12 21:43:45 +0100
commit7082c47d1499bdc9348cf7a80ff3749d299898fa (patch)
treee9b647e503673cde7a91cfd2854c18d1c6024e85 /src/gallium/drivers/svga/svga_state_rss.c
parent6602889d82d1402338f5d23e37a9f46db99e86c6 (diff)
svga: enable code to emit blend color
Diffstat (limited to 'src/gallium/drivers/svga/svga_state_rss.c')
-rw-r--r--src/gallium/drivers/svga/svga_state_rss.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/gallium/drivers/svga/svga_state_rss.c b/src/gallium/drivers/svga/svga_state_rss.c
index 68828c252f..15ead98483 100644
--- a/src/gallium/drivers/svga/svga_state_rss.c
+++ b/src/gallium/drivers/svga/svga_state_rss.c
@@ -26,9 +26,7 @@
#include "util/u_inlines.h"
#include "pipe/p_defines.h"
#include "util/u_math.h"
-#if 0
#include "util/u_pack_color.h"
-#endif
#include "svga_context.h"
#include "svga_state.h"
@@ -103,8 +101,6 @@ static int emit_rss( struct svga_context *svga,
}
}
-#if 0
- /* FIXME: shouldn't we emit blend color here */
if (dirty & SVGA_NEW_BLEND_COLOR) {
union util_color uc;
ubyte r = float_to_ubyte(svga->curr.blend_color.color[0]);
@@ -117,9 +113,6 @@ static int emit_rss( struct svga_context *svga,
EMIT_RS( svga, uc.ui, BLENDCOLOR, fail );
}
-#endif
-
-
if (dirty & (SVGA_NEW_DEPTH_STENCIL | SVGA_NEW_RAST)) {
const struct svga_depth_stencil_state *curr = svga->curr.depth;
@@ -252,13 +245,10 @@ static int emit_rss( struct svga_context *svga,
memcpy( rs,
queue.rs,
queue.rs_count * sizeof queue.rs[0]);
-
+
SVGA_FIFOCommitAll( svga->swc );
}
- /* Also blend color:
- */
-
return 0;
fail:
@@ -278,9 +268,7 @@ struct svga_tracked_state svga_hw_rss =
"hw rss state",
(SVGA_NEW_BLEND |
-#if 0
SVGA_NEW_BLEND_COLOR |
-#endif
SVGA_NEW_DEPTH_STENCIL |
SVGA_NEW_STENCIL_REF |
SVGA_NEW_RAST |