diff options
author | Jason Ekstrand <[email protected]> | 2016-02-20 08:35:36 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-02-20 08:35:36 -0800 |
commit | 0d76aa94855462cbd6094897d3de831d15d23297 (patch) | |
tree | f9582d4a9ca93e730a2f9ba1eee3ac602a757d15 /src/intel/genxml/genX_pack.h | |
parent | 2b858074580ddf0b8e50d86203bc07230317a6b1 (diff) |
intel/genxml: Add a couple of helper headers
Diffstat (limited to 'src/intel/genxml/genX_pack.h')
-rw-r--r-- | src/intel/genxml/genX_pack.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/intel/genxml/genX_pack.h b/src/intel/genxml/genX_pack.h new file mode 100644 index 00000000000..69fc340762b --- /dev/null +++ b/src/intel/genxml/genX_pack.h @@ -0,0 +1,40 @@ +/* + * Copyright © 2015 Intel Corporation + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice (including the next + * paragraph) shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + * IN THE SOFTWARE. + */ + +#pragma once + +#ifndef GEN_VERSIONx10 +# error "The GEN_VERSIONx10 macro must be defined" +#endif + +#if (GEN_VERSIONx10 == 70) +# include "gen7_pack.h" +#elif (GEN_VERSIONx10 == 75) +# include "gen75_pack.h" +#elif (GEN_VERSIONx10 == 80) +# include "gen8_pack.h" +#elif (GEN_VERSIONx10 == 90) +# include "gen9_pack.h" +#else +# error "Need to add a pack header include for this gen" +#endif |