Merge "NULL should not be const for RS."

This commit is contained in:
Stephen Hines
2011-12-06 18:33:35 -08:00
committed by Android (Google) Code Review

View File

@@ -364,7 +364,7 @@ typedef struct {
typedef float4 rs_quaternion;
#define RS_PACKED __attribute__((packed, aligned(4)))
#define NULL ((const void *)0)
#define NULL ((void *)0)
#if (defined(RS_VERSION) && (RS_VERSION >= 14))