Mark Lobodzinski | 476f47a | 2016-06-08 12:48:18 -0600 | [diff] [blame] | 1 | ;;;; Begin Copyright Notice ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 2 | ; Vulkan |
| 3 | ; |
| 4 | ; Copyright (c) 2015-2016 The Khronos Group Inc. |
| 5 | ; Copyright (c) 2015-2016 Valve Corporation |
| 6 | ; Copyright (c) 2015-2016 LunarG, Inc. |
| 7 | ; |
| 8 | ; Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | ; you may not use this file except in compliance with the License. |
| 10 | ; You may obtain a copy of the License at |
| 11 | ; |
| 12 | ; http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | ; |
| 14 | ; Unless required by applicable law or agreed to in writing, software |
| 15 | ; distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | ; See the License for the specific language governing permissions and |
| 18 | ; limitations under the License. |
| 19 | ; |
| 20 | ; Author: Mark Lobodzinski <mark@LunarG.com> |
| 21 | ;;;; End Copyright Notice ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 22 | |
| 23 | ; The following is required on Windows for exporting symbols from the DLL |
| 24 | |
| 25 | LIBRARY VkLayer_utils |
| 26 | EXPORTS |
| 27 | vk_format_is_depth_or_stencil |
| 28 | vk_format_is_depth_and_stencil |
| 29 | vk_format_is_stencil_only |
| 30 | vk_format_is_depth_only |
| 31 | vk_format_is_norm |
| 32 | vk_format_is_int |
| 33 | vk_format_is_uint |
| 34 | vk_format_is_sint |
| 35 | vk_format_is_float |
| 36 | vk_format_is_srgb |
| 37 | vk_format_is_compressed |
| 38 | vk_format_get_compatibility_class |
| 39 | vk_format_get_size |
| 40 | vk_format_get_channel_count |
| 41 | vk_safe_modulo |
| 42 | vk_string_validate |
| 43 | layer_debug_actions |
| 44 | util_GetExtensionProperties |
| 45 | util_GetLayerProperties |
Mark Lobodzinski | fd027d0 | 2016-06-08 12:44:54 -0600 | [diff] [blame] | 46 | LogMessageInitialized |
| 47 | SetLogMessageInitialized |