Searched refs:interpMode (Results 1 - 14 of 14) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
H A Dst_atifs_to_tgsi.h49 const ubyte interpMode[],
H A Dst_mesa_to_tgsi.h60 const ubyte interpMode[],
H A Dst_glsl_to_tgsi.h53 const ubyte interpMode[],
H A Dst_program.c758 ubyte interpMode[PIPE_MAX_SHADER_INPUTS]; /* XXX size? */ local in function:st_translate_fragment_program
835 interpMode[slot] = TGSI_INTERPOLATE_LINEAR;
840 interpMode[slot] = stfp->glsl_to_tgsi ?
846 interpMode[slot] = stfp->glsl_to_tgsi ?
852 interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE;
857 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT;
862 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT;
867 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT;
872 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT;
877 interpMode[slo
[all...]
H A Dst_atifs_to_tgsi.c430 const ubyte interpMode[],
456 interpMode[i]);
422 st_translate_atifs_program(struct ureg_program * ureg,struct ati_fragment_shader * atifs,struct gl_program * program,GLuint numInputs,const ubyte inputMapping[],const ubyte inputSemanticName[],const ubyte inputSemanticIndex[],const ubyte interpMode[],GLuint numOutputs,const ubyte outputMapping[],const ubyte outputSemanticName[],const ubyte outputSemanticIndex[]) argument
H A Dst_mesa_to_tgsi.c818 * \param interpMode the TGSI_INTERPOLATE_LINEAR/PERSP mode for each input
837 const ubyte interpMode[],
868 interpMode[i]);
829 st_translate_mesa_program(struct gl_context * ctx,uint procType,struct ureg_program * ureg,const struct gl_program * program,GLuint numInputs,const ubyte inputMapping[],const ubyte inputSemanticName[],const ubyte inputSemanticIndex[],const ubyte interpMode[],GLuint numOutputs,const ubyte outputMapping[],const ubyte outputSemanticName[],const ubyte outputSemanticIndex[]) argument
H A Dst_glsl_to_tgsi.cpp6609 * \param interpMode the TGSI_INTERPOLATE_LINEAR/PERSP mode for each input
6631 const ubyte interpMode[],
6702 assert(interpMode);
6703 interp_mode = interpMode[slot] != TGSI_INTERPOLATE_COUNT ?
6704 (enum tgsi_interpolate_mode) interpMode[slot] :
6620 st_translate_program(struct gl_context * ctx,enum pipe_shader_type procType,struct ureg_program * ureg,glsl_to_tgsi_visitor * program,const struct gl_program * proginfo,GLuint numInputs,const ubyte inputMapping[],const ubyte inputSlotToAttr[],const ubyte inputSemanticName[],const ubyte inputSemanticIndex[],const ubyte interpMode[],GLuint numOutputs,const ubyte outputMapping[],const ubyte outputSemanticName[],const ubyte outputSemanticIndex[]) argument
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.h53 const ubyte interpMode[],
H A Dst_program.c1060 ubyte interpMode[PIPE_MAX_SHADER_INPUTS]; /* XXX size? */ local in function:st_translate_fragment_program
1092 interpMode[slot] = TGSI_INTERPOLATE_LINEAR;
1097 interpMode[slot] = stfp->glsl_to_tgsi ?
1103 interpMode[slot] = stfp->glsl_to_tgsi ?
1109 interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE;
1114 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT;
1119 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT;
1124 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT;
1129 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT;
1134 interpMode[slo
[all...]
H A Dst_glsl_to_tgsi.cpp6635 * \param interpMode the TGSI_INTERPOLATE_LINEAR/PERSP mode for each input
6657 const ubyte interpMode[],
6753 assert(interpMode);
6754 interp_mode = interpMode[slot] != TGSI_INTERPOLATE_COUNT ?
6755 (enum tgsi_interpolate_mode) interpMode[slot] :
6646 st_translate_program(struct gl_context * ctx,enum pipe_shader_type procType,struct ureg_program * ureg,glsl_to_tgsi_visitor * program,const struct gl_program * proginfo,GLuint numInputs,const ubyte attrToIndex[],const ubyte inputSlotToAttr[],const ubyte inputSemanticName[],const ubyte inputSemanticIndex[],const ubyte interpMode[],GLuint numOutputs,const ubyte outputMapping[],const ubyte outputSemanticName[],const ubyte outputSemanticIndex[]) argument
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/
H A Dswr_shader.cpp1092 const unsigned interpMode = swr_fs->info.base.input_interpolate[attrib]; local in function:BuilderSWR::CompileFS
1117 if (interpMode == TGSI_INTERPOLATE_PERSPECTIVE ||
1118 interpMode == TGSI_INTERPOLATE_COLOR) {
1193 if (interpMode == TGSI_INTERPOLATE_CONSTANT) {
1195 } else if (interpMode == TGSI_INTERPOLATE_COLOR) {
1213 if (interpMode == TGSI_INTERPOLATE_CONSTANT) {
1215 } else if (interpMode == TGSI_INTERPOLATE_COLOR) {
1247 if (interpMode == TGSI_INTERPOLATE_CONSTANT) {
1258 if (interpMode == TGSI_INTERPOLATE_PERSPECTIVE ||
1259 interpMode
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/
H A Dswr_shader.cpp2682 const unsigned interpMode = swr_fs->info.base.input_interpolate[attrib]; local in function:BuilderSWR::CompileFS
2707 if (interpMode == TGSI_INTERPOLATE_PERSPECTIVE ||
2708 interpMode == TGSI_INTERPOLATE_COLOR) {
2798 if (interpMode == TGSI_INTERPOLATE_CONSTANT) {
2800 } else if (interpMode == TGSI_INTERPOLATE_COLOR) {
2819 if (interpMode == TGSI_INTERPOLATE_CONSTANT) {
2821 } else if (interpMode == TGSI_INTERPOLATE_COLOR) {
2853 if (interpMode == TGSI_INTERPOLATE_CONSTANT) {
2864 if (interpMode == TGSI_INTERPOLATE_PERSPECTIVE ||
2865 interpMode
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
H A Dsvga_tgsi_vgpu10.c2167 * \param interpMode interpolation mode
2179 VGPU10_INTERPOLATION_MODE interpMode)
2204 assert(interpMode == VGPU10_INTERPOLATION_UNDEFINED ||
2205 interpMode == VGPU10_INTERPOLATION_CONSTANT ||
2206 interpMode == VGPU10_INTERPOLATION_LINEAR ||
2207 interpMode == VGPU10_INTERPOLATION_LINEAR_CENTROID ||
2208 interpMode == VGPU10_INTERPOLATION_LINEAR_NOPERSPECTIVE ||
2209 interpMode == VGPU10_INTERPOLATION_LINEAR_NOPERSPECTIVE_CENTROID ||
2210 interpMode == VGPU10_INTERPOLATION_LINEAR_SAMPLE ||
2211 interpMode
2170 emit_input_declaration(struct svga_shader_emitter_v10 * emit,VGPU10_OPCODE_TYPE opcodeType,VGPU10_OPERAND_TYPE operandType,VGPU10_OPERAND_INDEX_DIMENSION dim,unsigned index,unsigned size,VGPU10_SYSTEM_NAME name,VGPU10_OPERAND_NUM_COMPONENTS numComp,VGPU10_OPERAND_4_COMPONENT_SELECTION_MODE selMode,unsigned usageMask,VGPU10_INTERPOLATION_MODE interpMode) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
H A Dsvga_tgsi_vgpu10.c458 unsigned interpMode,
3532 * \param interpMode interpolation mode
3544 VGPU10_INTERPOLATION_MODE interpMode,
3584 assert(interpMode == VGPU10_INTERPOLATION_UNDEFINED ||
3585 interpMode == VGPU10_INTERPOLATION_CONSTANT ||
3586 interpMode == VGPU10_INTERPOLATION_LINEAR ||
3587 interpMode == VGPU10_INTERPOLATION_LINEAR_CENTROID ||
3588 interpMode == VGPU10_INTERPOLATION_LINEAR_NOPERSPECTIVE ||
3589 interpMode == VGPU10_INTERPOLATION_LINEAR_NOPERSPECTIVE_CENTROID ||
3590 interpMode
3535 emit_input_declaration(struct svga_shader_emitter_v10 * emit,VGPU10_OPCODE_TYPE opcodeType,VGPU10_OPERAND_TYPE operandType,VGPU10_OPERAND_INDEX_DIMENSION dim,unsigned index,unsigned size,VGPU10_SYSTEM_NAME name,VGPU10_OPERAND_NUM_COMPONENTS numComp,VGPU10_OPERAND_4_COMPONENT_SELECTION_MODE selMode,unsigned usageMask,VGPU10_INTERPOLATION_MODE interpMode,boolean addSignature,SVGA3dDXSignatureSemanticName sgnName) argument
[all...]

Completed in 41 milliseconds