llvmpipe: Silence Coverity incorrect sizeof expression defect.
[mesa.git] / src / gallium / drivers / llvmpipe / lp_state_fs.h
index 98410c69359c1ce02825392be3a516f7ef298ba8..306f5f9669ae8b1274196ae5611db8d62558c450 100644 (file)
@@ -84,10 +84,19 @@ struct lp_fragment_shader_variant
 
    boolean opaque;
 
+   struct gallivm_state *gallivm;
+
+   LLVMTypeRef jit_context_ptr_type;
+   LLVMTypeRef jit_thread_data_ptr_type;
+   LLVMTypeRef jit_linear_context_ptr_type;
+
    LLVMValueRef function[2];
 
    lp_jit_frag_func jit_function[2];
 
+   /* Total number of LLVM instructions generated */
+   unsigned nr_instrs;
+
    struct lp_fs_variant_list_item list_item_global, list_item_local;
    struct lp_fragment_shader *shader;