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:
@@ -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++) {
|
||||
|
@@ -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 */
|
||||
|
Reference in New Issue
Block a user