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.c571 GLuint interpMode[PIPE_MAX_SHADER_INPUTS]; /* XXX size? */ in st_translate_fragment_program() local
630 interpMode[slot] = TGSI_INTERPOLATE_LINEAR; in st_translate_fragment_program()
635 interpMode[slot] = stfp->glsl_to_tgsi ? in st_translate_fragment_program()
641 interpMode[slot] = stfp->glsl_to_tgsi ? in st_translate_fragment_program()
647 interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE; in st_translate_fragment_program()
652 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT; in st_translate_fragment_program()
657 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT; in st_translate_fragment_program()
662 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT; in st_translate_fragment_program()
667 interpMode[slot] = TGSI_INTERPOLATE_CONSTANT; in st_translate_fragment_program()
672 interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE; in st_translate_fragment_program()
[all …]
Dst_mesa_to_tgsi.h57 const GLuint interpMode[],
Dst_atifs_to_tgsi.h49 const GLuint interpMode[],
Dst_glsl_to_tgsi.h49 const GLuint interpMode[],
Dst_mesa_to_tgsi.c805 const GLuint interpMode[], in st_translate_mesa_program() argument
836 interpMode[i]); in st_translate_mesa_program()
Dst_atifs_to_tgsi.c430 const GLuint interpMode[], in st_translate_atifs_program() argument
456 interpMode[i]); in st_translate_atifs_program()
Dst_glsl_to_tgsi.cpp6018 const GLuint interpMode[], in st_translate_program() argument
6077 assert(interpMode); in st_translate_program()
6078 interp_mode = interpMode[slot] != TGSI_INTERPOLATE_COUNT ? in st_translate_program()
6079 interpMode[slot] : in st_translate_program()
/external/mesa3d/src/gallium/drivers/swr/
Dswr_shader.cpp433 const unsigned interpMode = swr_fs->info.base.input_interpolate[attrib]; in CompileFS() local
458 if (interpMode == TGSI_INTERPOLATE_PERSPECTIVE || in CompileFS()
459 interpMode == TGSI_INTERPOLATE_COLOR) { in CompileFS()
533 if (interpMode == TGSI_INTERPOLATE_CONSTANT) { in CompileFS()
535 } else if (interpMode == TGSI_INTERPOLATE_COLOR) { in CompileFS()
553 if (interpMode == TGSI_INTERPOLATE_CONSTANT) { in CompileFS()
555 } else if (interpMode == TGSI_INTERPOLATE_COLOR) { in CompileFS()
587 if (interpMode == TGSI_INTERPOLATE_CONSTANT) { in CompileFS()
598 if (interpMode == TGSI_INTERPOLATE_PERSPECTIVE || in CompileFS()
599 interpMode == TGSI_INTERPOLATE_COLOR) in CompileFS()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_vgpu10.c2054 unsigned interpMode) in emit_input_declaration() argument
2076 assert(interpMode == VGPU10_INTERPOLATION_UNDEFINED || in emit_input_declaration()
2077 interpMode == VGPU10_INTERPOLATION_CONSTANT || in emit_input_declaration()
2078 interpMode == VGPU10_INTERPOLATION_LINEAR || in emit_input_declaration()
2079 interpMode == VGPU10_INTERPOLATION_LINEAR_CENTROID || in emit_input_declaration()
2080 interpMode == VGPU10_INTERPOLATION_LINEAR_NOPERSPECTIVE || in emit_input_declaration()
2081 interpMode == VGPU10_INTERPOLATION_LINEAR_NOPERSPECTIVE_CENTROID); in emit_input_declaration()
2088 opcode0.interpolationMode = interpMode; in emit_input_declaration()