diff options
author | Eric Anholt <[email protected]> | 2009-06-22 11:20:18 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2009-06-23 19:31:11 -0700 |
commit | 246d59c29e3e5a57dcf2f60ad429eb1606193ef0 (patch) | |
tree | 0b8aed47be86f6e68a37111257b094c900f39939 /src/mesa/drivers/dri/intel/intel_regions.h | |
parent | 6a49473ab5797b1e6ce021e396902f9cb77674ef (diff) |
intel: Fix some potential writes to zero-copy PBOs when used as regions.
I was in the midst of fixing some blitting-with-Y-tiled issues when I
noticed this. Hopefully PBO usage will be a little more robust, as a
result.
Diffstat (limited to 'src/mesa/drivers/dri/intel/intel_regions.h')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_regions.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_regions.h b/src/mesa/drivers/dri/intel/intel_regions.h index 1d0371aa670..c2d4810df2c 100644 --- a/src/mesa/drivers/dri/intel/intel_regions.h +++ b/src/mesa/drivers/dri/intel/intel_regions.h @@ -116,7 +116,8 @@ void intel_region_copy(struct intel_context *intel, GLuint destx, GLuint desty, struct intel_region *src, GLuint src_offset, - GLuint srcx, GLuint srcy, GLuint width, GLuint height); + GLuint srcx, GLuint srcy, GLuint width, GLuint height, + GLenum logicop); /* Helpers for zerocopy uploads, particularly texture image uploads: */ |