diff options
author | Adam Jackson <[email protected]> | 2013-05-29 01:36:43 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2013-05-31 20:21:05 +0200 |
commit | e881c9a5dc5457f0b096a3c583c5b1450beb89e9 (patch) | |
tree | d4f859954289a482301de16477cd1429fb28005b /src/gallium/drivers/llvmpipe/lp_rast_priv.h | |
parent | eb4c992ea5e69083d2bc705d2460ce956c5063a7 (diff) |
llvmpipe: Remove x/y from cmd_bin
These were mostly just a waste of memory and cache pressure, and were
really only used for debugging.
This change reduces instruction count (as measured by callgrind's Ir
event) of gnome-shell-perf-tool on Ivybridge by 3.5% ± 0.015% (n=20).
Signed-off-by: Adam Jackson <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_rast_priv.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_rast_priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast_priv.h b/src/gallium/drivers/llvmpipe/lp_rast_priv.h index 85febff6ecd..e4b6e5b301f 100644 --- a/src/gallium/drivers/llvmpipe/lp_rast_priv.h +++ b/src/gallium/drivers/llvmpipe/lp_rast_priv.h @@ -341,6 +341,6 @@ lp_rast_set_state(struct lp_rasterizer_task *task, const union lp_rast_cmd_arg arg); void -lp_debug_bin( const struct cmd_bin *bin ); +lp_debug_bin( const struct cmd_bin *bin, int x, int y ); #endif |