1 /*------------------------------------------------------------------------- 2 * drawElements Quality Program Tester Core 3 * ---------------------------------------- 4 * 5 * Copyright 2014 The Android Open Source Project 6 * 7 * Licensed under the Apache License, Version 2.0 (the "License"); 8 * you may not use this file except in compliance with the License. 9 * You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, software 14 * distributed under the License is distributed on an "AS IS" BASIS, 15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 * See the License for the specific language governing permissions and 17 * limitations under the License. 18 * 19 *//*! 20 * \file 21 * \brief Android activity constructors. 22 *//*--------------------------------------------------------------------*/ 23 24 #include "deDefs.h" 25 26 #if (DE_OS != DE_OS_ANDROID) 27 # error Unsupported OS 28 #endif 29 30 #if (DE_ANDROID_API >= 9) 31 // Add NativeActivity entry point 32 33 #include "tcuAndroidTestActivity.hpp" 34 35 DE_BEGIN_EXTERN_C 36 37 void createTestActivity (ANativeActivity* activity, void* savedState, size_t savedStateSize) 38 { 39 DE_UNREF(savedState && savedStateSize); 40 try 41 { 42 tcu::Android::TestActivity* obj = new tcu::Android::TestActivity(activity); 43 DE_UNREF(obj); 44 } 45 catch (const std::exception& e) 46 { 47 tcu::die("Failed to create activity: %s", e.what()); 48 } 49 } 50 51 DE_END_EXTERN_C 52 53 #endif // DE_ANDROID_API >= 9 54