Lines Matching defs:lp
188 lp_jit_create_types(struct lp_fragment_shader_variant *lp)
190 struct gallivm_state *gallivm = lp->gallivm;
297 lp->jit_context_ptr_type = LLVMPointerType(context_type, 0);
316 lp->jit_thread_data_ptr_type = LLVMPointerType(thread_data_type, 0);
384 lp->jit_linear_context_ptr_type = LLVMPointerType(linear_context_type, 0);
410 lp_jit_init_types(struct lp_fragment_shader_variant *lp)
412 if (!lp->jit_context_ptr_type)
413 lp_jit_create_types(lp);
417 lp_jit_create_cs_types(struct lp_compute_shader_variant *lp)
419 struct gallivm_state *gallivm = lp->gallivm;
439 lp->jit_cs_thread_data_ptr_type = LLVMPointerType(thread_data_type, 0);
504 lp->jit_cs_context_ptr_type = LLVMPointerType(cs_context_type, 0);
515 lp_jit_init_cs_types(struct lp_compute_shader_variant *lp)
517 if (!lp->jit_cs_context_ptr_type)
518 lp_jit_create_cs_types(lp);