summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_bld_format.h
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-10-22 20:58:35 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-10-25 09:53:48 +0000
commit232b5864647d4c8d6cebb0845c046f1612e6054d (patch)
treeb4d36358468df18b81e1049619f61efb1ff35ec5 /src/gallium/drivers/llvmpipe/lp_bld_format.h
parentb4f6907b8d8a966df56c06155049c52dadea105f (diff)
llvmpipe: Eliminate lp_build_load_rgba_aos.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_bld_format.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_bld_format.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_bld_format.h b/src/gallium/drivers/llvmpipe/lp_bld_format.h
index 1ea694509d..b30537b2e9 100644
--- a/src/gallium/drivers/llvmpipe/lp_bld_format.h
+++ b/src/gallium/drivers/llvmpipe/lp_bld_format.h
@@ -51,7 +51,7 @@ struct lp_type;
*/
LLVMValueRef
lp_build_unpack_rgba_aos(LLVMBuilderRef builder,
- enum pipe_format format,
+ const struct util_format_description *desc,
LLVMValueRef packed);
@@ -67,20 +67,6 @@ lp_build_pack_rgba_aos(LLVMBuilderRef builder,
/**
- * Load a pixel into its RGBA components.
- *
- * @param ptr value with the pointer to the packed pixel. Pointer type is
- * irrelevant.
- *
- * @return RGBA in a 4 floats vector.
- */
-LLVMValueRef
-lp_build_load_rgba_aos(LLVMBuilderRef builder,
- enum pipe_format format,
- LLVMValueRef ptr);
-
-
-/**
* Store a pixel.
*
* @param rgba 4 float vector with the unpacked components.