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.c29370 struct statvfs fsInfo;
29375 if( fstatvfs(pFile->h, &fsInfo) == -1 ) {
29379 if( !strcmp(fsInfo.f_basetype, "tmp") ) {
29380 pFile->sectorSize = fsInfo.f_bsize;
29388 }else if( strstr(fsInfo.f_basetype, "etfs") ){
29389 pFile->sectorSize = fsInfo.f_bsize;
29398 }else if( !strcmp(fsInfo.f_basetype, "qnx6") ){
29399 pFile->sectorSize = fsInfo.f_bsize;
29407 }else if( !strcmp(fsInfo.f_basetype, "qnx4") ){
29408 pFile->sectorSize = fsInfo.f_bsize;
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c29352 struct statvfs fsInfo;
29357 if( fstatvfs(pFile->h, &fsInfo) == -1 ) {
29361 if( !strcmp(fsInfo.f_basetype, "tmp") ) {
29362 pFile->sectorSize = fsInfo.f_bsize;
29370 }else if( strstr(fsInfo.f_basetype, "etfs") ){
29371 pFile->sectorSize = fsInfo.f_bsize;
29380 }else if( !strcmp(fsInfo.f_basetype, "qnx6") ){
29381 pFile->sectorSize = fsInfo.f_bsize;
29389 }else if( !strcmp(fsInfo.f_basetype, "qnx4") ){
29390 pFile->sectorSize = fsInfo.f_bsize;
[all …]