Vulkan SDK for Android 1.1.1 Mali Developer Center
All Classes Functions Variables Enumerations Enumerator Pages
windows.cpp
1 #include "windows.hpp"
2 #define WIN32_LEAN_AND_MEAN
3 #include <windows.h>
4 #undef SUCCEEDED
5 #undef FAILED
6 
7 #include "asset_manager.hpp"
8 #include "platform/os.hpp"
9 
10 // Stub implementation.
11 
12 namespace MaliSDK
13 {
14 AssetManager &OS::getAssetManager()
15 {
16  return *static_cast<AssetManager *>(nullptr);
17 }
18 
19 unsigned OS::getNumberOfCpuThreads()
20 {
21  return 1;
22 }
23 
24 double OS::getCurrentTime()
25 {
26  return 0.0;
27 }
28 }
29 
30 int main()
31 {
32 }