aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2010-10-11 14:32:45 -0700
committerStephen Hines <srhines@google.com>2010-10-11 14:32:45 -0700
commite1ec5b4f9069f92cc55e7a98c32d5c03e9ee0086 (patch)
tree8318fa0f684d64a1cb36cb95b8348b42ffacf832
parent65df4023999f3f3d56cae835a9c6e8cc1fd1233e (diff)
downloadandroid_frameworks_compile_slang-e1ec5b4f9069f92cc55e7a98c32d5c03e9ee0086.tar.gz
android_frameworks_compile_slang-e1ec5b4f9069f92cc55e7a98c32d5c03e9ee0086.tar.bz2
android_frameworks_compile_slang-e1ec5b4f9069f92cc55e7a98c32d5c03e9ee0086.zip
Support export of "long" type.
Change-Id: Ifbf176661ca233c3db980db91d76eae717127dd8
-rw-r--r--slang_rs_export_type_support.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/slang_rs_export_type_support.inc b/slang_rs_export_type_support.inc
index 73bb8eb..6f83b4e 100644
--- a/slang_rs_export_type_support.inc
+++ b/slang_rs_export_type_support.inc
@@ -11,6 +11,7 @@
SLANG_RS_SUPPORT_BUILTIN_TYPE(clang::BuiltinType::Char32, RSExportPrimitiveType::DataTypeSigned32)
SLANG_RS_SUPPORT_BUILTIN_TYPE(clang::BuiltinType::UInt, RSExportPrimitiveType::DataTypeUnsigned32)
SLANG_RS_SUPPORT_BUILTIN_TYPE(clang::BuiltinType::Int, RSExportPrimitiveType::DataTypeSigned32)
+ SLANG_RS_SUPPORT_BUILTIN_TYPE(clang::BuiltinType::Long, RSExportPrimitiveType::DataTypeSigned64)
SLANG_RS_SUPPORT_BUILTIN_TYPE(clang::BuiltinType::LongLong, RSExportPrimitiveType::DataTypeSigned64)
SLANG_RS_SUPPORT_BUILTIN_TYPE(clang::BuiltinType::Float, RSExportPrimitiveType::DataTypeFloat32)
SLANG_RS_SUPPORT_BUILTIN_TYPE(clang::BuiltinType::Double, RSExportPrimitiveType::DataTypeFloat64)