i965: Drop Broadwell perf_debugs about missing MOCS that aren't missing.

I actually added MOCS support for these things, but forgot to delete the
corresponding perf_debug() warnings.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Cc: "10.2" <mesa-stable@lists.freedesktop.org>
This commit is contained in:
Kenneth Graunke
2014-06-14 01:43:27 -07:00
parent 7f256c1c70
commit d053a05ef3
2 changed files with 0 additions and 4 deletions

View File

@@ -94,8 +94,6 @@ gen8_emit_vertices(struct brw_context *brw)
if (brw->vb.nr_buffers) {
assert(brw->vb.nr_buffers <= 33);
perf_debug("Missing MOCS setup for 3DSTATE_VERTEX_BUFFERS.");
BEGIN_BATCH(1 + 4*brw->vb.nr_buffers);
OUT_BATCH((_3DSTATE_VERTEX_BUFFERS << 16) | (4*brw->vb.nr_buffers - 1));
for (unsigned i = 0; i < brw->vb.nr_buffers; i++) {

View File

@@ -31,8 +31,6 @@
*/
static void upload_state_base_address(struct brw_context *brw)
{
perf_debug("Missing MOCS setup for STATE_BASE_ADDRESS.");
BEGIN_BATCH(16);
OUT_BATCH(CMD_STATE_BASE_ADDRESS << 16 | (16 - 2));
/* General state base address: stateless DP read/write requests */