From: Vinson Lee Date: Tue, 20 Apr 2010 23:40:55 +0000 (-0700) Subject: llvmpipe: Change return type of declaration to match code. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a5460dc6d75b22473092b152d90b9092850bf51d;p=mesa.git 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. --- diff --git a/src/gallium/drivers/llvmpipe/lp_texture.h b/src/gallium/drivers/llvmpipe/lp_texture.h index 5862f979da6..858975bcee0 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);