diff options
author | Marek Olšák <[email protected]> | 2012-02-24 16:36:05 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-03-05 14:22:19 +0100 |
commit | 370c8b5ee7666f4f515d63603afe8282b1b3c682 (patch) | |
tree | f048581b0075accc2ede961cb31499a05e97286e /src/gallium/drivers/r600/evergreen_state.c | |
parent | 0018db1126c443c4d70947010dcf1afa37e5fb16 (diff) |
r600g: remove obsolete todo comments
Also use XXX in the other ones, because it's the most used word for that
purpose in Mesa.
Reviewed-by: Alex Deucher <[email protected]>
Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/evergreen_state.c')
-rw-r--r-- | src/gallium/drivers/r600/evergreen_state.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/gallium/drivers/r600/evergreen_state.c b/src/gallium/drivers/r600/evergreen_state.c index 81366e56dac..a40f66dbb45 100644 --- a/src/gallium/drivers/r600/evergreen_state.c +++ b/src/gallium/drivers/r600/evergreen_state.c @@ -21,9 +21,6 @@ * USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/* TODO: - * - fix mask for depth control & cull for query - */ #include <stdio.h> #include <errno.h> #include "pipe/p_defines.h" @@ -636,7 +633,7 @@ static void *evergreen_create_blend_state(struct pipe_context *ctx, struct r600_pipe_blend *blend = CALLOC_STRUCT(r600_pipe_blend); struct r600_pipe_state *rstate; uint32_t color_control, target_mask; - /* FIXME there is more then 8 framebuffer */ + /* XXX there is more then 8 framebuffer */ unsigned blend_cntl[8]; if (blend == NULL) { @@ -1407,7 +1404,7 @@ static void evergreen_cb(struct r600_context *rctx, struct r600_pipe_state *rsta * - 11-bit or smaller UNORM/SNORM/SRGB * - 16-bit or smaller FLOAT */ - /* FIXME: This should probably be the same for all CBs if we want + /* XXX: This should probably be the same for all CBs if we want * useful alpha tests. */ if (desc->colorspace != UTIL_FORMAT_COLORSPACE_ZS && ((desc->channel[i].size < 12 && @@ -1426,7 +1423,7 @@ static void evergreen_cb(struct r600_context *rctx, struct r600_pipe_state *rsta offset += r600_resource_va(rctx->context.screen, state->cbufs[cb]->texture); offset >>= 8; - /* FIXME handle enabling of CB beyond BASE8 which has different offset */ + /* XXX handle enabling of CB beyond BASE8 which has different offset */ r600_pipe_state_add_reg(rstate, R_028C60_CB_COLOR0_BASE + cb * 0x3C, offset, &rtex->resource, RADEON_USAGE_READWRITE); @@ -2410,7 +2407,7 @@ void evergreen_polygon_offset_update(struct r600_context *rctx) default: return; } - /* FIXME some of those reg can be computed with cso */ + /* XXX some of those reg can be computed with cso */ offset_db_fmt_cntl |= S_028B78_POLY_OFFSET_NEG_NUM_DB_BITS(depth); r600_pipe_state_add_reg(&state, R_028B80_PA_SU_POLY_OFFSET_FRONT_SCALE, |