projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2b0702
)
ac/surface: sanity-check that we got a TC-compatible HTILE if requested
author
Nicolai Hähnle
<nicolai.haehnle@amd.com>
Thu, 7 Sep 2017 11:20:25 +0000
(13:20 +0200)
committer
Nicolai Hähnle
<nicolai.haehnle@amd.com>
Wed, 13 Sep 2017 16:26:59 +0000
(18:26 +0200)
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
src/amd/common/ac_surface.c
patch
|
blob
|
history
diff --git
a/src/amd/common/ac_surface.c
b/src/amd/common/ac_surface.c
index c6ff57362f79455eae6b98cb20c4fdf111afb498..43f082e27e79661aa0f4307def527233b2ca51c7 100644
(file)
--- a/
src/amd/common/ac_surface.c
+++ b/
src/amd/common/ac_surface.c
@@
-679,6
+679,12
@@
static int gfx6_compute_surface(ADDR_HANDLE addrlib,
if (level > 0)
continue;
+ /* Check that we actually got a TC-compatible HTILE if
+ * we requested it (only for level 0, since we're not
+ * supporting HTILE on higher mip levels anyway). */
+ assert(AddrSurfInfoOut.tcCompatible ||
+ !AddrSurfInfoIn.flags.tcCompatible);
+
r = gfx6_surface_settings(addrlib, info, config,
&AddrSurfInfoOut, surf);
if (r)