diff options
author | Erik Faye-Lund <[email protected]> | 2018-08-20 12:45:14 +0200 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2018-08-28 14:13:43 +0200 |
commit | 2ebfa90abe476b005f46adc8ed14e57785c541ba (patch) | |
tree | e840cb605c514936e43eb96a50c41828d38529d1 | |
parent | 9de34b4ddecb41deae8a4a6349534f330ce0f4cd (diff) |
virgl: delete commented out fprintf-call
This is just debug-cruft left over. Let's just get rid of it.
Signed-off-by: Erik Faye-Lund <[email protected]>
Reviewed-By: Gert Wollny <[email protected]>
-rw-r--r-- | src/gallium/drivers/virgl/virgl_encode.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/drivers/virgl/virgl_encode.h b/src/gallium/drivers/virgl/virgl_encode.h index 749cd330120..999123f4266 100644 --- a/src/gallium/drivers/virgl/virgl_encode.h +++ b/src/gallium/drivers/virgl/virgl_encode.h @@ -70,7 +70,6 @@ static inline void virgl_encoder_write_block(struct virgl_cmd_buf *state, int x; memcpy(state->buf + state->cdw, ptr, len); x = (len % 4); -// fprintf(stderr, "[%d] block %d x is %d\n", state->cdw, len, x); if (x) { uint8_t *mp = (uint8_t *)(state->buf + state->cdw); mp += len; |