1 /* 2 * Copyright (c) 2015-2016 The Khronos Group Inc. 3 * Copyright (c) 2015-2016 Valve Corporation 4 * Copyright (c) 2015-2016 LunarG, Inc. 5 * 6 * Licensed under the Apache License, Version 2.0 (the "License"); 7 * you may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Author: Cody Northrop <cody@lunarg.com> 13 */ 14 15 #ifndef ICD_SPV_H 16 #define ICD_SPV_H 17 18 #include <stdint.h> 19 20 #define ICD_SPV_MAGIC 0x07230203 21 #define ICD_SPV_VERSION 99 22 23 struct icd_spv_header { 24 uint32_t magic; 25 uint32_t version; 26 uint32_t gen_magic; // Generator's magic number 27 }; 28 29 #endif /* ICD_SPV_H */ 30