Home
last modified time | relevance | path

Searched refs:interpMode (Results 1 – 9 of 9) sorted by relevance

/external/mesa3d/src/mesa/state_tracker/
Dst_program.c651 ubyte interpMode[PIPE_MAX_SHADER_INPUTS]; /* XXX size? */ in st_translate_fragment_program() local
710 interpMode[slot] = TGSI_INTERPOLATE_LINEAR; in st_translate_fragment_program()
715 interpMode[slot] = stfp->glsl_to_tgsi ? in st_translate_fragment_program()
721 interpMode[slot] = stfp->glsl_to_tgsi ? in st_translate_fragment_program()
727 interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE; in st_translate_fragment_program()
732 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT; in st_translate_fragment_program()
737 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT; in st_translate_fragment_program()
742 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT; in st_translate_fragment_program()
747 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT; in st_translate_fragment_program()
752 interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE; in st_translate_fragment_program()
[all …]
Dst_mesa_to_tgsi.h60 const ubyte interpMode[],
Dst_atifs_to_tgsi.h49 const ubyte interpMode[],
Dst_glsl_to_tgsi.h49 const ubyte interpMode[],
Dst_mesa_to_tgsi.c837 const ubyte interpMode[], in st_translate_mesa_program() argument
868 interpMode[i]); in st_translate_mesa_program()
Dst_atifs_to_tgsi.c430 const ubyte interpMode[], in st_translate_atifs_program() argument
456 interpMode[i]); in st_translate_atifs_program()
Dst_glsl_to_tgsi.cpp6239 const ubyte interpMode[], in st_translate_program() argument
6309 assert(interpMode); in st_translate_program()
6310 interp_mode = interpMode[slot] != TGSI_INTERPOLATE_COUNT ? in st_translate_program()
6311 interpMode[slot] : in st_translate_program()
/external/mesa3d/src/gallium/drivers/swr/
Dswr_shader.cpp1081 const unsigned interpMode = swr_fs->info.base.input_interpolate[attrib]; in CompileFS() local
1106 if (interpMode == TGSI_INTERPOLATE_PERSPECTIVE || in CompileFS()
1107 interpMode == TGSI_INTERPOLATE_COLOR) { in CompileFS()
1182 if (interpMode == TGSI_INTERPOLATE_CONSTANT) { in CompileFS()
1184 } else if (interpMode == TGSI_INTERPOLATE_COLOR) { in CompileFS()
1202 if (interpMode == TGSI_INTERPOLATE_CONSTANT) { in CompileFS()
1204 } else if (interpMode == TGSI_INTERPOLATE_COLOR) { in CompileFS()
1236 if (interpMode == TGSI_INTERPOLATE_CONSTANT) { in CompileFS()
1247 if (interpMode == TGSI_INTERPOLATE_PERSPECTIVE || in CompileFS()
1248 interpMode == TGSI_INTERPOLATE_COLOR) in CompileFS()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_vgpu10.c2060 unsigned interpMode) in emit_input_declaration() argument
2082 assert(interpMode == VGPU10_INTERPOLATION_UNDEFINED || in emit_input_declaration()
2083 interpMode == VGPU10_INTERPOLATION_CONSTANT || in emit_input_declaration()
2084 interpMode == VGPU10_INTERPOLATION_LINEAR || in emit_input_declaration()
2085 interpMode == VGPU10_INTERPOLATION_LINEAR_CENTROID || in emit_input_declaration()
2086 interpMode == VGPU10_INTERPOLATION_LINEAR_NOPERSPECTIVE || in emit_input_declaration()
2087 interpMode == VGPU10_INTERPOLATION_LINEAR_NOPERSPECTIVE_CENTROID); in emit_input_declaration()
2094 opcode0.interpolationMode = interpMode; in emit_input_declaration()