Module: Mesa Branch: master Commit: 5069e4bd40d4e822340f787dd4d7ec1890c6c9da URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5069e4bd40d4e822340f787dd4d7ec1890c6c9da
Author: Ben Widawsky <[email protected]> Date: Thu Dec 11 12:40:20 2014 -0800 i965/gen8+: Remove false perf debug message about MOCS We support MOCS on both gen8 and gen9, so the message seems meaningless. Remove it to avoid confusion. Trivial. Signed-off-by: Ben Widawsky <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> --- src/mesa/drivers/dri/i965/gen8_misc_state.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/mesa/drivers/dri/i965/gen8_misc_state.c b/src/mesa/drivers/dri/i965/gen8_misc_state.c index f993650..bd1d5cc 100644 --- a/src/mesa/drivers/dri/i965/gen8_misc_state.c +++ b/src/mesa/drivers/dri/i965/gen8_misc_state.c @@ -32,9 +32,6 @@ static void upload_state_base_address(struct brw_context *brw) { uint32_t mocs_wb = brw->gen >= 9 ? SKL_MOCS_WB : BDW_MOCS_WB; - - perf_debug("Missing MOCS setup for STATE_BASE_ADDRESS."); - int pkt_len = brw->gen >= 9 ? 19 : 16; BEGIN_BATCH(pkt_len); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
