Home
last modified time | relevance | path

Searched refs:fsInfo (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_state_derived.c69 const struct tgsi_shader_info *fsInfo = &softpipe->fs_variant->info; in softpipe_get_vertex_info() local
89 for (i = 0; i < fsInfo->num_inputs; i++) { in softpipe_get_vertex_info()
93 switch (fsInfo->input_interpolate[i]) { in softpipe_get_vertex_info()
104 assert(fsInfo->input_semantic_name[i] == TGSI_SEMANTIC_COLOR); in softpipe_get_vertex_info()
110 switch (fsInfo->input_semantic_name[i]) { in softpipe_get_vertex_info()
116 if (fsInfo->input_interpolate[i] == TGSI_INTERPOLATE_COLOR) { in softpipe_get_vertex_info()
127 fsInfo->input_semantic_name[i], in softpipe_get_vertex_info()
128 fsInfo->input_semantic_index[i]); in softpipe_get_vertex_info()
129 if (fsInfo->input_semantic_name[i] == TGSI_SEMANTIC_COLOR && src == 0) in softpipe_get_vertex_info()
132 TGSI_SEMANTIC_BCOLOR, fsInfo->input_semantic_index[i]); in softpipe_get_vertex_info()
Dsp_setup.c578 const struct tgsi_shader_info *fsInfo = &setup->softpipe->fs_variant->info; in setup_fragcoord_coeff() local
581 setup->coef[slot].a0[0] = fsInfo->pixel_center_integer ? 0.0 : 0.5; in setup_fragcoord_coeff()
586 (fsInfo->origin_lower_left ? setup->softpipe->framebuffer.height-1 : 0) in setup_fragcoord_coeff()
587 + (fsInfo->pixel_center_integer ? 0.0 : 0.5); in setup_fragcoord_coeff()
589 setup->coef[slot].dady[1] = fsInfo->origin_lower_left ? -1.0 : 1.0; in setup_fragcoord_coeff()
610 const struct tgsi_shader_info *fsInfo = &setup->softpipe->fs_variant->info; in setup_tri_coefficients() local
629 for (fragSlot = 0; fragSlot < fsInfo->num_inputs; fragSlot++) { in setup_tri_coefficients()
643 fsInfo->input_cylindrical_wrap[fragSlot] & (1 << j), in setup_tri_coefficients()
653 fsInfo->input_cylindrical_wrap[fragSlot] & (1 << j), in setup_tri_coefficients()
665 if (fsInfo->input_semantic_name[fragSlot] == TGSI_SEMANTIC_FACE) { in setup_tri_coefficients()
[all …]
Dsp_quad_depth_test.c771 const struct tgsi_shader_info *fsInfo = &qs->softpipe->fs_variant->info; in depth_test_quads_fallback() local
772 boolean interp_depth = !fsInfo->writes_z; in depth_test_quads_fallback()
773 boolean shader_stencil_ref = fsInfo->writes_stencil; in depth_test_quads_fallback()
882 const struct tgsi_shader_info *fsInfo = &qs->softpipe->fs_variant->info; in choose_depth_test() local
884 boolean interp_depth = !fsInfo->writes_z; in choose_depth_test()
/external/sqlite/dist/
Dsqlite3.c30547 struct statvfs fsInfo;
30552 if( fstatvfs(pFile->h, &fsInfo) == -1 ) {
30556 if( !strcmp(fsInfo.f_basetype, "tmp") ) {
30557 pFile->sectorSize = fsInfo.f_bsize;
30565 }else if( strstr(fsInfo.f_basetype, "etfs") ){
30566 pFile->sectorSize = fsInfo.f_bsize;
30575 }else if( !strcmp(fsInfo.f_basetype, "qnx6") ){
30576 pFile->sectorSize = fsInfo.f_bsize;
30584 }else if( !strcmp(fsInfo.f_basetype, "qnx4") ){
30585 pFile->sectorSize = fsInfo.f_bsize;
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c30529 struct statvfs fsInfo;
30534 if( fstatvfs(pFile->h, &fsInfo) == -1 ) {
30538 if( !strcmp(fsInfo.f_basetype, "tmp") ) {
30539 pFile->sectorSize = fsInfo.f_bsize;
30547 }else if( strstr(fsInfo.f_basetype, "etfs") ){
30548 pFile->sectorSize = fsInfo.f_bsize;
30557 }else if( !strcmp(fsInfo.f_basetype, "qnx6") ){
30558 pFile->sectorSize = fsInfo.f_bsize;
30566 }else if( !strcmp(fsInfo.f_basetype, "qnx4") ){
30567 pFile->sectorSize = fsInfo.f_bsize;
[all …]