/external/mesa3d/src/compiler/nir/ |
D | nir_lower_point_size_mov.c | 49 in->state_slots = ralloc_array(in, nir_state_slot, 1); in lower_impl() 50 memcpy(in->state_slots[0].tokens, in lower_impl() 52 sizeof(in->state_slots[0].tokens)); in lower_impl()
|
D | nir_lower_pntc_ytransform.c | 52 var->state_slots = ralloc_array(var, nir_state_slot, 1); in get_pntc_transform() 53 var->state_slots[0].swizzle = SWIZZLE_XYZW; in get_pntc_transform() 54 memcpy(var->state_slots[0].tokens, state->pntc_state_tokens, in get_pntc_transform() 55 sizeof(var->state_slots[0].tokens)); in get_pntc_transform()
|
D | nir_lower_patch_vertices.c | 37 var->state_slots = ralloc_array(var, nir_state_slot, var->num_state_slots); in make_uniform() 38 memcpy(var->state_slots[0].tokens, tokens, sizeof(*tokens) * STATE_LENGTH); in make_uniform() 39 var->state_slots[0].swizzle = SWIZZLE_XXXX; in make_uniform()
|
D | nir_lower_alpha_test.c | 103 var->state_slots = ralloc_array(var, nir_state_slot, 1); in nir_lower_alpha_test() 104 memcpy(var->state_slots[0].tokens, in nir_lower_alpha_test() 106 sizeof(var->state_slots[0].tokens)); in nir_lower_alpha_test()
|
D | nir_lower_wpos_ytransform.c | 60 var->state_slots = ralloc_array(var, nir_state_slot, 1); in get_transform() 61 var->state_slots[0].swizzle = SWIZZLE_XYZW; in get_transform() 62 memcpy(var->state_slots[0].tokens, state->options->state_tokens, in get_transform() 63 sizeof(var->state_slots[0].tokens)); in get_transform()
|
D | nir_lower_drawpixels.c | 78 var->state_slots = ralloc_array(var, nir_state_slot, 1); in create_uniform() 79 memcpy(var->state_slots[0].tokens, state_tokens, in create_uniform() 80 sizeof(var->state_slots[0].tokens)); in create_uniform()
|
D | nir_lower_clip.c | 233 var->state_slots = ralloc_array(var, nir_state_slot, 1); in get_ucp() 234 memcpy(var->state_slots[0].tokens, in get_ucp() 236 sizeof(var->state_slots[0].tokens)); in get_ucp()
|
D | nir_split_per_member_structs.c | 66 assert(var->state_slots == NULL); in split_variable()
|
D | nir_clone.c | 160 nvar->state_slots = ralloc_array(nvar, nir_state_slot, var->num_state_slots); in nir_variable_clone() 161 memcpy(nvar->state_slots, var->state_slots, in nir_variable_clone()
|
D | nir_serialize.c | 323 blob_write_bytes(ctx->blob, &var->state_slots[i], in write_variable() 324 sizeof(var->state_slots[i])); in write_variable() 389 var->state_slots = ralloc_array(var, nir_state_slot, in read_variable() 392 blob_copy_bytes(ctx->blob, &var->state_slots[i], in read_variable() 393 sizeof(var->state_slots[i])); in read_variable()
|
D | nir.h | 615 nir_state_slot *state_slots; /**< State descriptors. */ member
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_nir_lower_builtin.c | 141 var->state_slots = rzalloc_array(var, nir_state_slot, 1); in get_variable() 142 memcpy(var->state_slots[0].tokens, tokens, in get_variable() 143 sizeof(var->state_slots[0].tokens)); in get_variable()
|
D | st_glsl_to_nir.cpp | 215 } else if (uniform->state_slots) { in st_nir_assign_uniform_locations() 216 const gl_state_index16 *const stateTokens = uniform->state_slots[0].tokens; in st_nir_assign_uniform_locations() 443 const nir_state_slot *const slots = var->state_slots; in st_glsl_to_nir_post_opts()
|
/external/mesa3d/src/compiler/glsl/ |
D | ir.h | 585 return this->is_interface_instance() ? NULL : this->u.state_slots; in get_state_slots() 590 return this->is_interface_instance() ? NULL : this->u.state_slots; in get_state_slots() 597 this->u.state_slots = ralloc_array(this, ir_state_slot, n); in allocate_state_slots() 600 if (this->u.state_slots != NULL) in allocate_state_slots() 603 return this->u.state_slots; in allocate_state_slots() 1033 ir_state_slot *state_slots; member
|
D | glsl_to_nir.cpp | 661 var->state_slots = rzalloc_array(var, nir_state_slot, in visit() 664 ir_state_slot *state_slots = ir->get_state_slots(); in visit() local 667 var->state_slots[i].tokens[j] = state_slots[i].tokens[j]; in visit() 668 var->state_slots[i].swizzle = state_slots[i].swizzle; in visit() 671 var->state_slots = NULL; in visit()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_nir_uniforms.cpp | 35 const nir_state_slot *const slots = var->state_slots; in brw_nir_setup_glsl_builtin_uniform() 36 assert(var->state_slots != NULL); in brw_nir_setup_glsl_builtin_uniform()
|
D | brw_link.cpp | 350 const nir_state_slot *const slots = var->state_slots; in brw_link_shader()
|