1 /************************************************************************** 2 * 3 * Copyright 2007 VMware, Inc. 4 * All Rights Reserved. 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the 8 * "Software"), to deal in the Software without restriction, including 9 * without limitation the rights to use, copy, modify, merge, publish, 10 * distribute, sub license, and/or sell copies of the Software, and to 11 * permit persons to whom the Software is furnished to do so, subject to 12 * the following conditions: 13 * 14 * The above copyright notice and this permission notice (including the 15 * next paragraph) shall be included in all copies or substantial portions 16 * of the Software. 17 * 18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR 22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 25 * 26 **************************************************************************/ 27 28 /* Authors: Keith Whitwell <[email protected]> 29 */ 30 31 #ifndef LP_STATE_H 32 #define LP_STATE_H 33 34 #include "pipe/p_state.h" 35 #include "lp_jit.h" 36 #include "lp_state_fs.h" 37 #include "gallivm/lp_bld.h" 38 39 40 #define LP_NEW_VIEWPORT 0x1 41 #define LP_NEW_RASTERIZER 0x2 42 #define LP_NEW_FS 0x4 43 #define LP_NEW_BLEND 0x8 44 #define LP_NEW_CLIP 0x10 45 #define LP_NEW_SCISSOR 0x20 46 #define LP_NEW_STIPPLE 0x40 47 #define LP_NEW_FRAMEBUFFER 0x80 48 #define LP_NEW_DEPTH_STENCIL_ALPHA 0x100 49 #define LP_NEW_FS_CONSTANTS 0x200 50 #define LP_NEW_SAMPLER 0x400 51 #define LP_NEW_SAMPLER_VIEW 0x800 52 #define LP_NEW_VERTEX 0x1000 53 #define LP_NEW_VS 0x2000 54 #define LP_NEW_OCCLUSION_QUERY 0x4000 55 #define LP_NEW_BLEND_COLOR 0x8000 56 #define LP_NEW_GS 0x10000 57 #define LP_NEW_SO 0x20000 58 #define LP_NEW_SO_BUFFERS 0x40000 59 #define LP_NEW_FS_SSBOS 0x80000 60 #define LP_NEW_FS_IMAGES 0x100000 61 #define LP_NEW_TCS 0x200000 62 #define LP_NEW_TES 0x400000 63 #define LP_NEW_SAMPLE_MASK 0x800000 64 #define LP_NEW_TASK 0x1000000 65 #define LP_NEW_TASK_CONSTANTS 0x2000000 66 #define LP_NEW_TASK_SAMPLER 0x4000000 67 #define LP_NEW_TASK_SAMPLER_VIEW 0x8000000 68 #define LP_NEW_TASK_SSBOS 0x10000000 69 #define LP_NEW_TASK_IMAGES 0x20000000 70 #define LP_NEW_MESH 0x40000000 71 #define LP_NEW_MESH_CONSTANTS 0x80000000 72 #define LP_NEW_MESH_SAMPLER 0x100000000ULL 73 #define LP_NEW_MESH_SAMPLER_VIEW 0x200000000ULL 74 #define LP_NEW_MESH_SSBOS 0x400000000ULL 75 #define LP_NEW_MESH_IMAGES 0x800000000ULL 76 77 #define LP_CSNEW_CS 0x1 78 #define LP_CSNEW_CONSTANTS 0x2 79 #define LP_CSNEW_SAMPLER 0x4 80 #define LP_CSNEW_SAMPLER_VIEW 0x8 81 #define LP_CSNEW_SSBOS 0x10 82 #define LP_CSNEW_IMAGES 0x20 83 84 struct vertex_info; 85 struct pipe_context; 86 struct llvmpipe_context; 87 88 89 90 struct lp_geometry_shader { 91 bool no_tokens; 92 struct pipe_stream_output_info stream_output; 93 struct draw_geometry_shader *dgs; 94 }; 95 96 struct lp_tess_ctrl_shader { 97 bool no_tokens; 98 struct pipe_stream_output_info stream_output; 99 struct draw_tess_ctrl_shader *dtcs; 100 }; 101 102 struct lp_tess_eval_shader { 103 bool no_tokens; 104 struct pipe_stream_output_info stream_output; 105 struct draw_tess_eval_shader *dtes; 106 }; 107 108 109 /** Vertex element state */ 110 struct lp_velems_state 111 { 112 unsigned count; 113 struct pipe_vertex_element velem[PIPE_MAX_ATTRIBS]; 114 }; 115 116 struct lp_so_state { 117 struct pipe_stream_output_info base; 118 }; 119 120 121 void 122 llvmpipe_set_framebuffer_state(struct pipe_context *, 123 const struct pipe_framebuffer_state *); 124 125 void 126 llvmpipe_update_fs(struct llvmpipe_context *lp); 127 128 void 129 llvmpipe_update_setup(struct llvmpipe_context *lp); 130 131 void 132 llvmpipe_update_task_shader(struct llvmpipe_context *lp); 133 134 void 135 llvmpipe_update_mesh_shader(struct llvmpipe_context *lp); 136 137 void 138 llvmpipe_update_derived_clear(struct llvmpipe_context *llvmpipe); 139 140 void 141 llvmpipe_task_update_derived(struct llvmpipe_context *llvmpipe); 142 143 void 144 llvmpipe_mesh_update_derived(struct llvmpipe_context *llvmpipe); 145 146 void 147 llvmpipe_update_derived(struct llvmpipe_context *llvmpipe); 148 149 void 150 llvmpipe_init_sampler_funcs(struct llvmpipe_context *llvmpipe); 151 152 void 153 llvmpipe_init_blend_funcs(struct llvmpipe_context *llvmpipe); 154 155 void 156 llvmpipe_init_vertex_funcs(struct llvmpipe_context *llvmpipe); 157 158 void 159 llvmpipe_init_draw_funcs(struct llvmpipe_context *llvmpipe); 160 161 void 162 llvmpipe_init_compute_funcs(struct llvmpipe_context *llvmpipe); 163 164 void 165 llvmpipe_init_clip_funcs(struct llvmpipe_context *llvmpipe); 166 167 void 168 llvmpipe_init_fs_funcs(struct llvmpipe_context *llvmpipe); 169 170 void 171 llvmpipe_init_vs_funcs(struct llvmpipe_context *llvmpipe); 172 173 void 174 llvmpipe_init_gs_funcs(struct llvmpipe_context *llvmpipe); 175 176 void 177 llvmpipe_init_tess_funcs(struct llvmpipe_context *llvmpipe); 178 179 void 180 llvmpipe_init_task_funcs(struct llvmpipe_context *llvmpipe); 181 182 void 183 llvmpipe_init_mesh_funcs(struct llvmpipe_context *llvmpipe); 184 185 void 186 llvmpipe_init_rasterizer_funcs(struct llvmpipe_context *llvmpipe); 187 188 void 189 llvmpipe_init_so_funcs(struct llvmpipe_context *llvmpipe); 190 191 void 192 llvmpipe_prepare_vertex_sampling(struct llvmpipe_context *ctx, 193 unsigned num, 194 struct pipe_sampler_view **views); 195 196 void 197 llvmpipe_prepare_geometry_sampling(struct llvmpipe_context *ctx, 198 unsigned num, 199 struct pipe_sampler_view **views); 200 201 void 202 llvmpipe_prepare_tess_ctrl_sampling(struct llvmpipe_context *ctx, 203 unsigned num, 204 struct pipe_sampler_view **views); 205 206 void 207 llvmpipe_prepare_tess_eval_sampling(struct llvmpipe_context *ctx, 208 unsigned num, 209 struct pipe_sampler_view **views); 210 void 211 llvmpipe_cleanup_stage_sampling(struct llvmpipe_context *ctx, 212 enum pipe_shader_type stage); 213 214 void 215 llvmpipe_prepare_vertex_images(struct llvmpipe_context *lp, 216 unsigned num, 217 struct pipe_image_view *views); 218 219 void 220 llvmpipe_prepare_geometry_images(struct llvmpipe_context *lp, 221 unsigned num, 222 struct pipe_image_view *views); 223 224 void 225 llvmpipe_prepare_tess_ctrl_images(struct llvmpipe_context *lp, 226 unsigned num, 227 struct pipe_image_view *views); 228 229 void 230 llvmpipe_prepare_tess_eval_images(struct llvmpipe_context *lp, 231 unsigned num, 232 struct pipe_image_view *views); 233 234 void 235 llvmpipe_cleanup_stage_images(struct llvmpipe_context *ctx, 236 enum pipe_shader_type stage); 237 238 #endif 239