2015-06-28 19:49:26 +00:00
|
|
|
/*
|
2015-10-22 05:13:26 +00:00
|
|
|
* Apple // emulator for *ix
|
2015-06-28 19:49:26 +00:00
|
|
|
*
|
|
|
|
* This software package is subject to the GNU General Public License
|
2015-10-22 05:13:26 +00:00
|
|
|
* version 3 or later (your choice) as published by the Free Software
|
2015-06-28 19:49:26 +00:00
|
|
|
* Foundation.
|
|
|
|
*
|
2015-10-22 05:13:26 +00:00
|
|
|
* Copyright 2015 Aaron Culliney
|
2015-06-28 19:49:26 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern unsigned long android_deviceSampleRateHz;
|
2015-07-05 01:14:21 +00:00
|
|
|
extern unsigned long android_monoBufferSubmitSizeSamples;
|
|
|
|
extern unsigned long android_stereoBufferSubmitSizeSamples;
|
2015-09-26 21:58:09 +00:00
|
|
|
|
|
|
|
// architectures
|
|
|
|
|
|
|
|
extern bool android_armArch;
|
|
|
|
extern bool android_armArchV7A;
|
|
|
|
extern bool android_arm64Arch;
|
|
|
|
|
|
|
|
extern bool android_x86;
|
|
|
|
extern bool android_x86_64;
|
|
|
|
|
|
|
|
// vector instructions availability
|
|
|
|
|
2015-07-11 21:37:41 +00:00
|
|
|
extern bool android_armNeonEnabled;
|
|
|
|
extern bool android_x86SSSE3Enabled;
|
2015-06-28 19:49:26 +00:00
|
|
|
|