Module: Mesa Branch: master Commit: a5460dc6d75b22473092b152d90b9092850bf51d URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a5460dc6d75b22473092b152d90b9092850bf51d
Author: Vinson Lee <[email protected]> Date: Tue Apr 20 16:40:55 2010 -0700 llvmpipe: Change return type of declaration to match code. Commit 2142108e0e1cf1ed8d0142e9c41fe1947abe0907 changed the return type of llvmpipe_get_texture_image_address function but didn't change the declaration. Fixes build. --- src/gallium/drivers/llvmpipe/lp_texture.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/llvmpipe/lp_texture.h b/src/gallium/drivers/llvmpipe/lp_texture.h index 5862f97..858975b 100644 --- a/src/gallium/drivers/llvmpipe/lp_texture.h +++ b/src/gallium/drivers/llvmpipe/lp_texture.h @@ -189,7 +189,7 @@ void * llvmpipe_resource_data(struct pipe_resource *resource); -void * +ubyte * llvmpipe_get_texture_image_address(struct llvmpipe_resource *lpr, unsigned face_slice, unsigned level, enum lp_texture_layout layout); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
