commit | 6ac532e01b532653ee2c89142109406b08ca2b39 | [log] [tgz] |
---|---|---|
author | Tim Murray <timmurray@google.com> | Mon Mar 18 12:44:25 2013 -0700 |
committer | Tim Murray <timmurray@google.com> | Mon Mar 18 12:44:25 2013 -0700 |
tree | 9424ac79840d94d5cc092c02ff5dad1e9186fd38 | |
parent | 4d93e8dec63500a62ea72ea1d1c47a7c7ea5f358 [diff] |
Remove __attribute((overloadable)) from rsUnpackColor8888. Change-Id: I12e8af774a0a61bd8571c31406894779a443c300
diff --git a/lib/Renderscript/runtime/rs_core.c b/lib/Renderscript/runtime/rs_core.c index 102289a..f0c9490 100644 --- a/lib/Renderscript/runtime/rs_core.c +++ b/lib/Renderscript/runtime/rs_core.c
@@ -45,7 +45,7 @@ } */ -extern float4 __attribute__((overloadable)) rsUnpackColor8888(uchar4 c) +extern float4 rsUnpackColor8888(uchar4 c) { return convert_float4(c) * 0.003921569f; }