1b8e80941Smrg/**************************************************************************** 2b8e80941Smrg * Copyright (C) 2015 Intel Corporation. All Rights Reserved. 3b8e80941Smrg * 4b8e80941Smrg * Permission is hereby granted, free of charge, to any person obtaining a 5b8e80941Smrg * copy of this software and associated documentation files (the "Software"), 6b8e80941Smrg * to deal in the Software without restriction, including without limitation 7b8e80941Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8b8e80941Smrg * and/or sell copies of the Software, and to permit persons to whom the 9b8e80941Smrg * Software is furnished to do so, subject to the following conditions: 10b8e80941Smrg * 11b8e80941Smrg * The above copyright notice and this permission notice (including the next 12b8e80941Smrg * paragraph) shall be included in all copies or substantial portions of the 13b8e80941Smrg * Software. 14b8e80941Smrg * 15b8e80941Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16b8e80941Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17b8e80941Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18b8e80941Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19b8e80941Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20b8e80941Smrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 21b8e80941Smrg * IN THE SOFTWARE. 22b8e80941Smrg ***************************************************************************/ 23b8e80941Smrg 24b8e80941Smrg#pragma once 25b8e80941Smrg 26b8e80941Smrgstruct swr_vertex_shader; 27b8e80941Smrgstruct swr_fragment_shader; 28b8e80941Smrgstruct swr_geometry_shader; 29b8e80941Smrgstruct swr_jit_fs_key; 30b8e80941Smrgstruct swr_jit_vs_key; 31b8e80941Smrgstruct swr_jit_gs_key; 32b8e80941Smrg 33b8e80941Smrgunsigned swr_so_adjust_attrib(unsigned in_attrib, 34b8e80941Smrg swr_vertex_shader *swr_vs); 35b8e80941Smrg 36b8e80941SmrgPFN_VERTEX_FUNC 37b8e80941Smrgswr_compile_vs(struct swr_context *ctx, swr_jit_vs_key &key); 38b8e80941Smrg 39b8e80941SmrgPFN_PIXEL_KERNEL 40b8e80941Smrgswr_compile_fs(struct swr_context *ctx, swr_jit_fs_key &key); 41b8e80941Smrg 42b8e80941SmrgPFN_GS_FUNC 43b8e80941Smrgswr_compile_gs(struct swr_context *ctx, swr_jit_gs_key &key); 44b8e80941Smrg 45b8e80941Smrgvoid swr_generate_fs_key(struct swr_jit_fs_key &key, 46b8e80941Smrg struct swr_context *ctx, 47b8e80941Smrg swr_fragment_shader *swr_fs); 48b8e80941Smrg 49b8e80941Smrgvoid swr_generate_vs_key(struct swr_jit_vs_key &key, 50b8e80941Smrg struct swr_context *ctx, 51b8e80941Smrg swr_vertex_shader *swr_vs); 52b8e80941Smrg 53b8e80941Smrgvoid swr_generate_fetch_key(struct swr_jit_fetch_key &key, 54b8e80941Smrg struct swr_vertex_element_state *velems); 55b8e80941Smrg 56b8e80941Smrgvoid swr_generate_gs_key(struct swr_jit_gs_key &key, 57b8e80941Smrg struct swr_context *ctx, 58b8e80941Smrg swr_geometry_shader *swr_gs); 59b8e80941Smrg 60b8e80941Smrgstruct swr_jit_sampler_key { 61b8e80941Smrg unsigned nr_samplers; 62b8e80941Smrg unsigned nr_sampler_views; 63b8e80941Smrg struct swr_sampler_static_state sampler[PIPE_MAX_SHADER_SAMPLER_VIEWS]; 64b8e80941Smrg}; 65b8e80941Smrg 66b8e80941Smrgstruct swr_jit_fs_key : swr_jit_sampler_key { 67b8e80941Smrg unsigned nr_cbufs; 68b8e80941Smrg unsigned light_twoside; 69b8e80941Smrg unsigned sprite_coord_enable; 70b8e80941Smrg ubyte vs_output_semantic_name[PIPE_MAX_SHADER_OUTPUTS]; 71b8e80941Smrg ubyte vs_output_semantic_idx[PIPE_MAX_SHADER_OUTPUTS]; 72b8e80941Smrg bool poly_stipple_enable; 73b8e80941Smrg}; 74b8e80941Smrg 75b8e80941Smrgstruct swr_jit_vs_key : swr_jit_sampler_key { 76b8e80941Smrg unsigned clip_plane_mask; // from rasterizer state & vs_info 77b8e80941Smrg}; 78b8e80941Smrg 79b8e80941Smrgstruct swr_jit_fetch_key { 80b8e80941Smrg FETCH_COMPILE_STATE fsState; 81b8e80941Smrg}; 82b8e80941Smrg 83b8e80941Smrgstruct swr_jit_gs_key : swr_jit_sampler_key { 84b8e80941Smrg ubyte vs_output_semantic_name[PIPE_MAX_SHADER_OUTPUTS]; 85b8e80941Smrg ubyte vs_output_semantic_idx[PIPE_MAX_SHADER_OUTPUTS]; 86b8e80941Smrg}; 87b8e80941Smrg 88b8e80941Smrgnamespace std 89b8e80941Smrg{ 90b8e80941Smrgtemplate <> struct hash<swr_jit_fs_key> { 91b8e80941Smrg std::size_t operator()(const swr_jit_fs_key &k) const 92b8e80941Smrg { 93b8e80941Smrg return util_hash_crc32(&k, sizeof(k)); 94b8e80941Smrg } 95b8e80941Smrg}; 96b8e80941Smrg 97b8e80941Smrgtemplate <> struct hash<swr_jit_vs_key> { 98b8e80941Smrg std::size_t operator()(const swr_jit_vs_key &k) const 99b8e80941Smrg { 100b8e80941Smrg return util_hash_crc32(&k, sizeof(k)); 101b8e80941Smrg } 102b8e80941Smrg}; 103b8e80941Smrg 104b8e80941Smrgtemplate <> struct hash<swr_jit_fetch_key> { 105b8e80941Smrg std::size_t operator()(const swr_jit_fetch_key &k) const 106b8e80941Smrg { 107b8e80941Smrg return util_hash_crc32(&k, sizeof(k)); 108b8e80941Smrg } 109b8e80941Smrg}; 110b8e80941Smrg 111b8e80941Smrgtemplate <> struct hash<swr_jit_gs_key> { 112b8e80941Smrg std::size_t operator()(const swr_jit_gs_key &k) const 113b8e80941Smrg { 114b8e80941Smrg return util_hash_crc32(&k, sizeof(k)); 115b8e80941Smrg } 116b8e80941Smrg}; 117b8e80941Smrg}; 118b8e80941Smrg 119b8e80941Smrgbool operator==(const swr_jit_fs_key &lhs, const swr_jit_fs_key &rhs); 120b8e80941Smrgbool operator==(const swr_jit_vs_key &lhs, const swr_jit_vs_key &rhs); 121b8e80941Smrgbool operator==(const swr_jit_fetch_key &lhs, const swr_jit_fetch_key &rhs); 122b8e80941Smrgbool operator==(const swr_jit_gs_key &lhs, const swr_jit_gs_key &rhs); 123