You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
586 B
23 lines
586 B
4 months ago
|
#pragma version(1)
|
||
|
#pragma rs java_package_name(foo)
|
||
|
|
||
|
const float floatTest = 1.99f;
|
||
|
const double doubleTest = 2.05;
|
||
|
const char charTest = -8;
|
||
|
const short shortTest = -16;
|
||
|
const int intTest = -32;
|
||
|
const long longTest = 17179869184l; // 1 << 34
|
||
|
const long long longlongTest = 68719476736l; // 1 << 36
|
||
|
|
||
|
const uchar ucharTest = 8;
|
||
|
const ushort ushortTest = 16;
|
||
|
const uint uintTest = 32;
|
||
|
const ulong ulongTest = 4611686018427387904L;
|
||
|
const int64_t int64_tTest = -17179869184l; // - 1 << 34
|
||
|
const uint64_t uint64_tTest = 117179869184l;
|
||
|
|
||
|
const bool boolTest = true;
|
||
|
|
||
|
extern const int i = 5;
|
||
|
|