diff options
author | Lionel Landwerlin <[email protected]> | 2018-05-02 18:39:20 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2018-05-02 19:46:47 +0100 |
commit | 000452aebc0d8b53310b981517b6a6aa7c32ccd9 (patch) | |
tree | 3ba9fad9559b95df6d0fb9709c3860cd9e82a3b7 /src/mesa | |
parent | bd35345e85ddaf9c8fe7b8ed089edd4926ee4fe1 (diff) |
intel: decoder: limit to the number decoded lines from VBO
By default we set no limit, but the debug batch decoder in i965 sets
it to 100.
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_batchbuffer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_batchbuffer.c b/src/mesa/drivers/dri/i965/intel_batchbuffer.c index b3e4bdc981e..bac6e6dae85 100644 --- a/src/mesa/drivers/dri/i965/intel_batchbuffer.c +++ b/src/mesa/drivers/dri/i965/intel_batchbuffer.c @@ -166,6 +166,7 @@ intel_batchbuffer_init(struct brw_context *brw) gen_batch_decode_ctx_init(&batch->decoder, devinfo, stderr, decode_flags, NULL, decode_get_bo, decode_get_state_size, brw); + batch->decoder.max_vbo_decoded_lines = 100; } batch->use_batch_first = |