xref: /aosp_15_r20/art/libartpalette/include/palette/palette.h (revision 795d594fd825385562da6b089ea9b2033f3abf5a)
1 /*
2  * Copyright (C) 2019 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef ART_LIBARTPALETTE_INCLUDE_PALETTE_PALETTE_H_
18 #define ART_LIBARTPALETTE_INCLUDE_PALETTE_PALETTE_H_
19 
20 #include <sys/cdefs.h>
21 
22 #include "palette_types.h"
23 
24 __BEGIN_DECLS
25 
26 // Palette method signatures are defined in palette_method_list.h.
27 
28 #define PALETTE_METHOD_DECLARATION(Name, ...) \
29   palette_status_t Name(__VA_ARGS__);
30 #include "palette_method_list.h"
PALETTE_METHOD_LIST(PALETTE_METHOD_DECLARATION)31 PALETTE_METHOD_LIST(PALETTE_METHOD_DECLARATION)
32 #undef PALETTE_METHOD_DECLARATION
33 
34 __END_DECLS
35 
36 // C++ wrappers
37 
38 #ifdef __cplusplus
39 
40 #include <string>
41 #include <vector>
42 
43 static inline palette_status_t PaletteSetTaskProfiles(int tid,
44                                                       const std::vector<std::string>& profiles) {
45   std::vector<const char*> profile_c_strs;
46   profile_c_strs.reserve(profiles.size());
47   for (const std::string& p : profiles) {
48     profile_c_strs.push_back(p.c_str());
49   }
50   return PaletteSetTaskProfiles(tid, profile_c_strs.data(), profile_c_strs.size());
51 }
52 
53 #endif  // __cplusplus
54 
55 #endif  // ART_LIBARTPALETTE_INCLUDE_PALETTE_PALETTE_H_
56