blob: 878820d563f1e9a1b1c5e12a8f93ea93032ca49e [file] [log] [blame]
Jon Ashburn7fa7e222016-02-02 12:08:10 -07001/*
Karl Schultz929a1002016-02-04 11:33:21 -07002 * Copyright (c) 2015-2016 The Khronos Group Inc.
3 * Copyright (c) 2015-2016 Valve Corporation
4 * Copyright (c) 2015-2016 LunarG, Inc.
Jon Ashburn7fa7e222016-02-02 12:08:10 -07005 *
Karl Schultz929a1002016-02-04 11:33:21 -07006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and/or associated documentation files (the "Materials"), to
8 * deal in the Materials without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Materials, and to permit persons to whom the Materials are
11 * furnished to do so, subject to the following conditions:
Jon Ashburn7fa7e222016-02-02 12:08:10 -070012 *
Karl Schultz929a1002016-02-04 11:33:21 -070013 * The above copyright notice(s) and this permission notice shall be included in
14 * all copies or substantial portions of the Materials.
Jon Ashburn7fa7e222016-02-02 12:08:10 -070015 *
Karl Schultz929a1002016-02-04 11:33:21 -070016 * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Jon Ashburn7fa7e222016-02-02 12:08:10 -070017 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Karl Schultz929a1002016-02-04 11:33:21 -070018 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 *
20 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
21 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE
23 * USE OR OTHER DEALINGS IN THE MATERIALS.
Jon Ashburn7fa7e222016-02-02 12:08:10 -070024 *
25 * Author: Cody Northrop <cody@lunarg.com>
Jon Ashburn7fa7e222016-02-02 12:08:10 -070026 */
27
28#ifndef ICD_SPV_H
29#define ICD_SPV_H
30
31#include <stdint.h>
32
33#define ICD_SPV_MAGIC 0x07230203
34#define ICD_SPV_VERSION 99
35
36struct icd_spv_header {
37 uint32_t magic;
38 uint32_t version;
39 uint32_t gen_magic; // Generator's magic number
40};
41
42#endif /* ICD_SPV_H */