Revert "r600g,radeonsi: initialize HTILE to fully-expanded state"

This reverts commit f05fe294e7.

Apparently the hw doesn't like this. Revert to the "cleared" state.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=83418
This commit is contained in:
Marek Olšák 2014-09-04 15:24:45 +02:00
parent 2d6206140a
commit 8bd6723179

View file

@ -559,9 +559,7 @@ static void r600_texture_allocate_htile(struct r600_common_screen *rscreen,
* without htile buffer */
R600_ERR("Failed to create buffer object for htile buffer.\n");
} else {
/* Clear to fully-expanded state. */
r600_screen_clear_buffer(rscreen, &rtex->htile_buffer->b.b, 0,
htile_size, 0xffffffff);
r600_screen_clear_buffer(rscreen, &rtex->htile_buffer->b.b, 0, htile_size, 0);
}
}