Home
last modified time | relevance | path

Searched refs:FRAG_RESULT_DATA0 (Results 1 – 15 of 15) sorted by relevance

/external/mesa3d/src/mesa/main/
Dshader_query.cpp283 shProg->FragDataBindings->put(colorNumber + FRAG_RESULT_DATA0, name); in _mesa_BindFragDataLocationIndexed()
338 || var->location < FRAG_RESULT_DATA0) in _mesa_GetFragDataIndex()
394 || var->location < FRAG_RESULT_DATA0) in _mesa_GetFragDataLocation()
398 return var->location - FRAG_RESULT_DATA0; in _mesa_GetFragDataLocation()
Dmtypes.h433 FRAG_RESULT_DATA0 = 3, enumerator
434 FRAG_RESULT_MAX = (FRAG_RESULT_DATA0 + MAX_DRAW_BUFFERS)
/external/mesa3d/src/mesa/swrast/
Ds_fragprog.c241 if (outputsWritten & BITFIELD64_BIT(FRAG_RESULT_DATA0 + buf)) { in run_program()
243 machine->Outputs[FRAG_RESULT_DATA0 + buf]); in run_program()
Ds_span.c1315 && fp->Base.OutputsWritten >= (1 << FRAG_RESULT_DATA0); in _swrast_write_rgba_span()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_wm_state.c58 fp->Base.OutputsWritten & BITFIELD64_BIT(FRAG_RESULT_DATA0 + i)) && in brw_color_buffer_write_enabled()
Dbrw_fs_visitor.cpp76 assert(ir->location == FRAG_RESULT_DATA0); in visit()
89 assert(ir->location >= FRAG_RESULT_DATA0 && in visit()
90 ir->location < FRAG_RESULT_DATA0 + BRW_MAX_DRAW_BUFFERS); in visit()
98 int output = ir->location - FRAG_RESULT_DATA0 + i; in visit()
Dbrw_wm_fp.c984 outcolor = src_reg(PROGRAM_OUTPUT, FRAG_RESULT_DATA0 + i); in emit_render_target_writes()
/external/mesa3d/src/glsl/
Dlinker.cpp1300 ? (int) VERT_ATTRIB_GENERIC0 : (int) FRAG_RESULT_DATA0; in assign_attribute_or_color_locations()
1355 assert(binding >= FRAG_RESULT_DATA0); in assign_attribute_or_color_locations()
Dbuiltin_variables.cpp877 ir_var_out, FRAG_RESULT_DATA0); in generate_ARB_draw_buffers_variables()
Dast_to_hir.cpp2085 : (qual->location + FRAG_RESULT_DATA0); in apply_type_qualifier_to_variable()
/external/mesa3d/src/mesa/program/
Dprog_print.c324 assert(strcmp(fragResults[FRAG_RESULT_DATA0], "result.color[0]") == 0); in arb_output_attrib_string()
Dprogram_parse.y2073 $$ = FRAG_RESULT_DATA0;
2103 $$ = FRAG_RESULT_DATA0 + $2;
Dprogram.c991 return index < FRAG_RESULT_DATA0 + ctx->Const.MaxDrawBuffers; in _mesa_valid_register_index()
/external/mesa3d/src/mesa/state_tracker/
Dst_program.c664 (FRAG_RESULT_DATA0 <= attr && attr < FRAG_RESULT_MAX)); in st_translate_fragment_program()
/external/mesa3d/src/mesa/drivers/dri/i915/
Di915_fragprog.c211 case FRAG_RESULT_DATA0: in get_result_vector()