aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <[email protected]>2017-04-08 08:36:36 +0200
committerEdward O'Callaghan <[email protected]>2017-04-10 12:44:59 +1000
commit957ccbe04a183e1dc5af11d83b3b197604de4368 (patch)
treec4b11b885056e7d734cb71fb50e2e1a465611a71
parentd0791ac2eddd3d9aaae91034ae897c9628f66174 (diff)
amd/addrlib: use correct variable name in header
Since the inclusion in 7f160efcde41b52ad78e562316384373dab419e3 the header used x_biased, while the implementation used y_biased. This changes the header to macth the implementation since the uses of the function seems to expect y_biased. Reviewed-by: Marek Olšák <[email protected]>
-rw-r--r--src/amd/addrlib/gfx9/rbmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/addrlib/gfx9/rbmap.h b/src/amd/addrlib/gfx9/rbmap.h
index f2f2ca8d2da..89c8922d3fe 100644
--- a/src/amd/addrlib/gfx9/rbmap.h
+++ b/src/amd/addrlib/gfx9/rbmap.h
@@ -49,7 +49,7 @@ public:
void Get_Comp_Block_Screen_Space( CoordEq& addr, int bytes_log2, int* w, int* h, int* d = NULL);
- void Get_Meta_Block_Screen_Space( int num_comp_blocks_log2, bool is_thick, bool x_biased,
+ void Get_Meta_Block_Screen_Space( int num_comp_blocks_log2, bool is_thick, bool y_biased,
int comp_block_width_log2, int comp_block_height_log2, int comp_block_depth_log2,
int& meta_block_width_log2, int& meta_block_height_log2, int& meta_block_depth_log2 );
void cap_pipe( int xmode, bool is_thick, int& num_ses_log2, int bpp_log2, int num_samples_log2, int pipe_interleave_log2,