summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_bld_swizzle.h
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-09-13 16:12:48 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-09-13 16:12:48 +0100
commit5e13e987da6ce656b08f6c25f8d373c80949e3b0 (patch)
treec31615f159363015999e7425e396cb44b68e0632 /src/gallium/drivers/llvmpipe/lp_bld_swizzle.h
parentfaec23387e035bcdd413b7364933d36a8ec22dba (diff)
llvmpipe: Use const keyword for input array arguments.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_bld_swizzle.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_bld_swizzle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_bld_swizzle.h b/src/gallium/drivers/llvmpipe/lp_bld_swizzle.h
index d7dd6a8a60..cb0b6707ec 100644
--- a/src/gallium/drivers/llvmpipe/lp_bld_swizzle.h
+++ b/src/gallium/drivers/llvmpipe/lp_bld_swizzle.h
@@ -73,7 +73,7 @@ lp_build_broadcast_aos(struct lp_build_context *bld,
LLVMValueRef
lp_build_swizzle1_aos(struct lp_build_context *bld,
LLVMValueRef a,
- unsigned char swizzle[4]);
+ const unsigned char swizzle[4]);
/**
@@ -85,7 +85,7 @@ LLVMValueRef
lp_build_swizzle2_aos(struct lp_build_context *bld,
LLVMValueRef a,
LLVMValueRef b,
- unsigned char swizzle[4]);
+ const unsigned char swizzle[4]);
#endif /* !LP_BLD_SWIZZLE_H */