Searched refs:emit (Results 1 - 25 of 302) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv20_driver.h55 nv20_emit_framebuffer(struct gl_context *ctx, int emit);
58 nv20_emit_viewport(struct gl_context *ctx, int emit);
62 nv20_emit_point_mode(struct gl_context *ctx, int emit);
66 nv20_emit_logic_opcode(struct gl_context *ctx, int emit);
70 nv20_emit_tex_env(struct gl_context *ctx, int emit);
73 nv20_emit_frag(struct gl_context *ctx, int emit);
77 nv20_emit_tex_gen(struct gl_context *ctx, int emit);
80 nv20_emit_tex_mat(struct gl_context *ctx, int emit);
83 nv20_emit_tex_obj(struct gl_context *ctx, int emit);
86 nv20_emit_tex_shader(struct gl_context *ctx, int emit);
[all...]
H A Dnv10_driver.h61 nv10_emit_framebuffer(struct gl_context *ctx, int emit);
64 nv10_emit_render_mode(struct gl_context *ctx, int emit);
67 nv10_emit_scissor(struct gl_context *ctx, int emit);
70 nv10_emit_viewport(struct gl_context *ctx, int emit);
73 nv10_emit_zclear(struct gl_context *ctx, int emit);
77 nv10_emit_cull_face(struct gl_context *ctx, int emit);
80 nv10_emit_front_face(struct gl_context *ctx, int emit);
83 nv10_emit_line_mode(struct gl_context *ctx, int emit);
86 nv10_emit_line_stipple(struct gl_context *ctx, int emit);
89 nv10_emit_point_mode(struct gl_context *ctx, int emit);
[all...]
H A Dnv04_driver.h67 nv04_emit_framebuffer(struct gl_context *ctx, int emit);
70 nv04_emit_scissor(struct gl_context *ctx, int emit);
74 nv04_defer_control(struct gl_context *ctx, int emit);
77 nv04_emit_control(struct gl_context *ctx, int emit);
80 nv04_defer_blend(struct gl_context *ctx, int emit);
83 nv04_emit_blend(struct gl_context *ctx, int emit);
87 nv04_emit_tex_env(struct gl_context *ctx, int emit);
91 nv04_emit_tex_obj(struct gl_context *ctx, int emit);
H A Dnv10_state_polygon.c35 nv10_emit_cull_face(struct gl_context *ctx, int emit) argument
50 nv10_emit_front_face(struct gl_context *ctx, int emit) argument
60 nv10_emit_line_mode(struct gl_context *ctx, int emit) argument
74 nv10_emit_line_stipple(struct gl_context *ctx, int emit) argument
79 nv10_emit_point_mode(struct gl_context *ctx, int emit) argument
91 nv10_emit_polygon_mode(struct gl_context *ctx, int emit) argument
104 nv10_emit_polygon_offset(struct gl_context *ctx, int emit) argument
119 nv10_emit_polygon_stipple(struct gl_context *ctx, int emit) argument
H A Dnv20_state_polygon.c34 nv20_emit_point_mode(struct gl_context *ctx, int emit) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_decl_sm30.c39 translate_vs_ps_semantic(struct svga_shader_emitter *emit, argument
67 *idx = svga_remap_generic_index(emit->key.generic_remap_table,
96 * index = 3, we'll emit "dcl_texcoord3 v1".
99 emit_decl(struct svga_shader_emitter *emit, argument
120 return (emit_instruction(emit, opcode) &&
121 svga_shader_emit_dwords( emit, dcl.values, Elements(dcl.values)));
129 emit_vface_decl(struct svga_shader_emitter *emit) argument
131 if (!emit->emitted_vface) {
135 if (!emit_decl( emit, reg, 0, 0 ))
138 emit
149 ps30_input_emit_depth_fog( struct svga_shader_emitter *emit, struct src_register *out ) argument
178 ps30_input(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
324 ps30_output(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
367 vs30_input(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
399 vs30_output_emit_depth_fog(struct svga_shader_emitter *emit, SVGA3dShaderDestToken *out) argument
425 vs30_output(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
495 ps30_sampler( struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx ) argument
516 svga_translate_decl_sm30( struct svga_shader_emitter *emit, const struct tgsi_full_declaration *decl ) argument
[all...]
H A Dsvga_tgsi.c53 static void svga_destroy_shader_emitter( struct svga_shader_emitter *emit )
55 if (emit->buf != err_buf)
56 FREE(emit->buf);
61 static boolean svga_shader_expand( struct svga_shader_emitter *emit )
64 unsigned newsize = emit->size * 2;
66 if(emit->buf != err_buf)
67 new_buf = REALLOC(emit->buf, emit->size, newsize);
72 emit->ptr = err_buf;
73 emit
84 reserve( struct svga_shader_emitter *emit, unsigned nr_dwords ) argument
95 svga_shader_emit_dword( struct svga_shader_emitter *emit, unsigned dword ) argument
106 svga_shader_emit_dwords( struct svga_shader_emitter *emit, const unsigned *dwords, unsigned nr ) argument
118 svga_shader_emit_opcode( struct svga_shader_emitter *emit, unsigned opcode ) argument
264 struct svga_shader_emitter emit; local
[all...]
H A Dsvga_tgsi_insn.c37 static boolean emit_vs_postamble( struct svga_shader_emitter *emit );
38 static boolean emit_ps_postamble( struct svga_shader_emitter *emit );
86 translate_dst_register( struct svga_shader_emitter *emit, argument
98 dest = emit->output_map[reg->Register.Index];
146 svga_arl_needs_adjustment( const struct svga_shader_emitter *emit )
150 for (i = 0; i < emit->num_arl_consts; ++i) {
151 if (emit->arl_consts[i].arl_num == emit->current_arl)
158 svga_arl_adjustment( const struct svga_shader_emitter *emit )
162 for (i = 0; i < emit
170 translate_src_register( const struct svga_shader_emitter *emit, const struct tgsi_full_src_register *reg ) argument
276 release_temp( struct svga_shader_emitter *emit, SVGA3dShaderDestToken temp ) argument
294 emit_repl( struct svga_shader_emitter *emit, SVGA3dShaderDestToken dst, struct src_register *src0) argument
324 submit_op0( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest ) argument
332 submit_op1( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0 ) argument
348 submit_op2( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1 ) argument
393 submit_op3( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1, struct src_register src2 ) argument
463 submit_op4( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1, struct src_register src2, struct src_register src3) argument
547 submit_lrp(struct svga_shader_emitter *emit, SVGA3dShaderDestToken dst, struct src_register src0, struct src_register src1, struct src_register src2) argument
582 emit_def_const( struct svga_shader_emitter *emit, SVGA3dShaderConstType type, unsigned idx, float a, float b, float c, float d ) argument
765 get_tex_dimensions( struct svga_shader_emitter *emit, int sampler_num ) argument
778 emit_fake_arl(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
802 emit_if(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
832 emit_endif(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
840 emit_else(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
852 emit_floor(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
879 emit_ceil(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
905 emit_div(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
946 emit_dp2(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
979 emit_dph(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
1010 emit_nrm(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
1035 do_emit_sincos(struct svga_shader_emitter *emit, SVGA3dShaderDestToken dst, struct src_register src0) argument
1043 emit_sincos(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
1066 emit_sin(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
1091 emit_cos(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
1112 emit_ssg(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
1151 emit_sub(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
1170 emit_kil(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
1228 emit_kilp(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
1271 emit_conditional(struct svga_shader_emitter *emit, unsigned compare_func, SVGA3dShaderDestToken dst, struct src_register src0, struct src_register src1, struct src_register pass, struct src_register fail) argument
1349 emit_select(struct svga_shader_emitter *emit, unsigned compare_func, SVGA3dShaderDestToken dst, struct src_register src0, struct src_register src1 ) argument
1394 emit_select_op(struct svga_shader_emitter *emit, unsigned compare, const struct tgsi_full_instruction *insn) argument
1412 emit_cmp(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
1446 emit_tex2(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn, SVGA3dShaderDestToken dst ) argument
1531 emit_tex4(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn, SVGA3dShaderDestToken dst ) argument
1564 emit_tex_swizzle( struct svga_shader_emitter *emit, SVGA3dShaderDestToken dst, struct src_register src, unsigned swizzle_x, unsigned swizzle_y, unsigned swizzle_z, unsigned swizzle_w) argument
1628 emit_tex(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
1752 emit_bgnloop2( struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
1766 emit_endloop2( struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
1776 emit_brk( struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
1783 emit_scalar_op1( struct svga_shader_emitter *emit, unsigned opcode, const struct tgsi_full_instruction *insn ) argument
1800 emit_simple_instruction(struct svga_shader_emitter *emit, unsigned opcode, const struct tgsi_full_instruction *insn ) argument
1833 emit_deriv(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
1890 emit_arl(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
1910 emit_pow(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
1945 emit_xpd(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
1998 emit_lrp(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
2013 emit_dst_insn(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
2092 emit_exp(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
2156 emit_lit(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
2259 emit_ex2( struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
2286 emit_log(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn) argument
2398 emit_trunc_round(struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn, boolean round) argument
2466 emit_bgnsub( struct svga_shader_emitter *emit, unsigned position, const struct tgsi_full_instruction *insn ) argument
2490 emit_call( struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn ) argument
2526 svga_emit_instruction( struct svga_shader_emitter *emit, unsigned position, const struct tgsi_full_instruction *insn ) argument
2711 svga_emit_immediate( struct svga_shader_emitter *emit, struct tgsi_full_immediate *imm) argument
2730 make_immediate( struct svga_shader_emitter *emit, float a, float b, float c, float d, struct src_register *out ) argument
3174 pre_parse_add_indirect( struct svga_shader_emitter *emit, int num, int current_arl) argument
3196 pre_parse_instruction( struct svga_shader_emitter *emit, const struct tgsi_full_instruction *insn, int current_arl) argument
3228 pre_parse_tokens( struct svga_shader_emitter *emit, const struct tgsi_token *tokens ) argument
3293 svga_shader_emit_instructions( struct svga_shader_emitter *emit, const struct tgsi_token *tokens ) argument
[all...]
H A Dsvga_tgsi_emit.h132 boolean svga_shader_emit_dword( struct svga_shader_emitter *emit,
135 boolean svga_shader_emit_dwords( struct svga_shader_emitter *emit,
139 boolean svga_shader_emit_opcode( struct svga_shader_emitter *emit,
142 boolean svga_shader_emit_instructions( struct svga_shader_emitter *emit,
145 boolean svga_translate_decl_sm30( struct svga_shader_emitter *emit,
149 static INLINE boolean emit_dst( struct svga_shader_emitter *emit, argument
154 return svga_shader_emit_dword( emit, dest.value );
157 static INLINE boolean emit_src( struct svga_shader_emitter *emit, argument
163 return (svga_shader_emit_dword( emit, src.base.value ) &&
164 svga_shader_emit_dword( emit, sr
173 emit_instruction( struct svga_shader_emitter *emit, SVGA3dShaderInstToken opcode ) argument
180 emit_op1( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0 ) argument
190 emit_op2( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1 ) argument
202 emit_op3( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1, struct src_register src2 ) argument
217 emit_op4( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1, struct src_register src2, struct src_register src3) argument
[all...]
/external/clang/test/CodeGen/
H A Dbuiltins-arm-msvc-compat-only.c1 // RUN: %clang_cc1 -triple thumbv7-windows -fms-extensions -emit-llvm -o - %s \
3 // RUN: %clang_cc1 -triple armv7-eabi -emit-llvm %s -o /dev/null 2>&1 \
7 void emit() { function
/external/jmonkeyengine/engine/src/test/jme3test/effect/
H A DTestPointSprite.java55 final ParticleEmitter emit = new ParticleEmitter("Emitter", Type.Point, 10000);
56 emit.setShape(new EmitterBoxShape(new Vector3f(-1.8f, -1.8f, -1.8f),
58 emit.setGravity(0, 0, 0);
59 emit.setLowLife(60);
60 emit.setHighLife(60);
61 emit.getParticleInfluencer().setInitialVelocity(new Vector3f(0, 0, 0));
62 emit.setImagesX(15);
63 emit.setStartSize(0.05f);
64 emit.setEndSize(0.05f);
65 emit
[all...]
H A DTestMovingParticle.java51 private ParticleEmitter emit; field in class:TestMovingParticle
61 emit = new ParticleEmitter("Emitter", Type.Triangle, 300);
62 emit.setGravity(0, 0, 0);
63 emit.setVelocityVariation(1);
64 emit.setLowLife(1);
65 emit.setHighLife(1);
66 emit.setInitialVelocity(new Vector3f(0, .5f, 0));
67 emit.setImagesX(15);
70 emit.setMaterial(mat);
72 rootNode.attachChild(emit);
[all...]
H A DTestParticleExportingCloning.java55 ParticleEmitter emit = new ParticleEmitter("Emitter", Type.Triangle, 200);
56 emit.setShape(new EmitterSphereShape(Vector3f.ZERO, 1f));
57 emit.setGravity(0, 0, 0);
58 emit.setLowLife(5);
59 emit.setHighLife(10);
60 emit.setInitialVelocity(new Vector3f(0, 0, 0));
61 emit.setImagesX(15);
64 emit.setMaterial(mat);
66 ParticleEmitter emit2 = emit.clone();
69 rootNode.attachChild(emit);
[all...]
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DIContent.java20 void emit (final HTMLWriter out); method in interface:IContent
H A DTextContent.java25 public void emit (final HTMLWriter out) method in class:TextContent
/external/jmonkeyengine/engine/src/android/jme3test/android/
H A DTestMovingParticle.java53 private ParticleEmitter emit; field in class:TestMovingParticle
63 emit = new ParticleEmitter("Emitter", Type.Triangle, 300);
64 emit.setGravity(0, 0, 0);
65 emit.setVelocityVariation(1);
66 emit.setLowLife(1);
67 emit.setHighLife(1);
68 emit.setInitialVelocity(new Vector3f(0, .5f, 0));
69 emit.setImagesX(15);
72 emit.setMaterial(mat);
74 rootNode.attachChild(emit);
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt_emit.c50 draw_pt_emit_prepare(struct pt_emit *emit, argument
54 struct draw_context *draw = emit->draw;
67 emit->prim = prim;
69 draw->render->set_primitive(draw->render, emit->prim);
73 emit->vinfo = vinfo = draw->render->get_vertex_info(draw->render);
84 output_format = draw_translate_vinfo_format(vinfo->attrib[i].emit);
85 emit_sz = draw_translate_vinfo_size(vinfo->attrib[i].emit);
90 if (vinfo->attrib[i].emit == EMIT_1F_PSIZE) {
109 if (!emit->translate ||
110 translate_key_compare(&emit
121 draw_pt_emit(struct pt_emit *emit, const struct draw_vertex_info *vert_info, const struct draw_prim_info *prim_info) argument
192 draw_pt_emit_linear(struct pt_emit *emit, const struct draw_vertex_info *vert_info, const struct draw_prim_info *prim_info) argument
273 struct pt_emit *emit = CALLOC_STRUCT(pt_emit); local
289 draw_pt_emit_destroy(struct pt_emit *emit) argument
[all...]
H A Ddraw_vs_variant.c42 /* A first pass at incorporating vertex fetch/emit functionality into
57 struct translate *emit; member in struct:draw_vs_variant_generic
175 vsvg->emit->set_buffer( vsvg->emit,
181 vsvg->emit->set_buffer( vsvg->emit,
187 vsvg->emit->run( vsvg->emit,
238 vsvg->emit->set_buffer( vsvg->emit,
273 struct translate_key fetch, emit; local
[all...]
H A Ddraw_pt_so_emit.c54 void draw_pt_so_emit_prepare(struct pt_so_emit *emit) argument
56 struct draw_context *draw = emit->draw;
58 emit->has_so = (draw->vs.vertex_shader->state.stream_output.num_outputs > 0);
62 if (emit->has_so) {
71 emit->has_so = has_valid_buffer;
74 if (!emit->has_so)
104 /* check have we space to emit prim first - if not don't do anything */
185 void draw_pt_so_emit( struct pt_so_emit *emit, argument
189 struct draw_context *draw = emit->draw;
193 if (!emit
228 struct pt_so_emit *emit = CALLOC_STRUCT(pt_so_emit); local
[all...]
H A Ddraw_vertex.h30 * the draw_vbuf code to emit hardware-specific vertex layouts into hw
49 * Vertex attribute emit modes
52 EMIT_OMIT, /**< don't emit the attribute */
89 unsigned emit:4; /**< EMIT_x */ member in struct:vertex_info::__anon11968
126 enum attrib_emit emit,
132 vinfo->attrib[n].emit = emit;
146 static INLINE enum pipe_format draw_translate_vinfo_format(enum attrib_emit emit) argument
148 switch (emit) {
170 static INLINE unsigned draw_translate_vinfo_size(enum attrib_emit emit) argument
125 draw_emit_vertex_attr(struct vertex_info *vinfo, enum attrib_emit emit, enum interp_mode interp, uint src_index) argument
[all...]
/external/v8/src/x64/
H A Dassembler-x64.cc410 emit(opcode);
424 emit(opcode ^ 0x02);
428 emit(opcode);
439 emit(0x66);
441 emit(opcode ^ 0x02);
444 emit(0x66);
446 emit(opcode);
456 emit(0x66);
458 emit(opcode);
469 emit(opcod
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen7_cc_state.c48 .emit = upload_cc_state_pointers,
68 .emit = upload_blend_state_pointer,
88 .emit = upload_depth_stencil_state_pointer,
H A Dbrw_fs_visitor.cpp205 fs_inst *inst = emit(BRW_OPCODE_MOV, this->result, src);
248 emit(BRW_OPCODE_MAD, this->result, src0, src1, src2);
297 emit(BRW_OPCODE_XOR, this->result, op[0], fs_reg(1));
311 emit(BRW_OPCODE_MOV, this->result, fs_reg(0.0f));
313 inst = emit(BRW_OPCODE_CMP, reg_null_f, op[0], fs_reg(0.0f));
315 inst = emit(BRW_OPCODE_MOV, this->result, fs_reg(1.0f));
318 inst = emit(BRW_OPCODE_CMP, reg_null_f, op[0], fs_reg(0.0f));
320 inst = emit(BRW_OPCODE_MOV, this->result, fs_reg(-1.0f));
348 emit(FS_OPCODE_DDX, this->result, op[0]);
351 emit(FS_OPCODE_DD
1814 fs_visitor::emit(fs_inst inst) function in class:fs_visitor
[all...]
H A Dbrw_vec4_visitor.cpp47 vec4_visitor::emit(vec4_instruction *inst) function in class:brw::vec4_visitor
66 vec4_visitor::emit(enum opcode opcode, dst_reg dst, function in class:brw::vec4_visitor
69 return emit(new(mem_ctx) vec4_instruction(this, opcode, dst,
75 vec4_visitor::emit(enum opcode opcode, dst_reg dst, src_reg src0, src_reg src1) function in class:brw::vec4_visitor
77 return emit(new(mem_ctx) vec4_instruction(this, opcode, dst, src0, src1));
81 vec4_visitor::emit(enum opcode opcode, dst_reg dst, src_reg src0) function in class:brw::vec4_visitor
83 return emit(new(mem_ctx) vec4_instruction(this, opcode, dst, src0));
87 vec4_visitor::emit(enum opcode opcode) function in class:brw::vec4_visitor
89 return emit(new(mem_ctx) vec4_instruction(this, opcode, dst_reg()));
215 emit(dot_opcode
2233 assert(vert_result < VERT_RESULT_MAX); reg.type = output_reg[vert_result].type; current_annotation = output_reg_annotation[vert_result]; vec4_instruction *inst = emit(MOV(reg, src_reg(output_reg[vert_result]))); if ((vert_result == VERT_RESULT_COL0 || vert_result == VERT_RESULT_COL1 || vert_result == VERT_RESULT_BFC0 || vert_result == VERT_RESULT_BFC1) && c->key.clamp_vertex_color) argument
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dr300_fragprog_emit.c57 struct r300_fragment_program_compiler *c = emit->compiler; \
151 static int emit_alu(struct r300_emit_state * emit, struct rc_pair_instruction* inst) argument
258 emit->node_flags |= R300_RGBA_OUT;
272 emit->node_flags |= R300_RGBA_OUT;
276 emit->node_flags |= R300_W_OUT;
305 static int finish_node(struct r300_emit_state * emit) argument
307 struct r300_fragment_program_compiler * c = emit->compiler;
308 struct r300_fragment_program_code *code = &emit->compiler->code->code.r300;
316 if (code->alu.length == emit->node_first_alu) {
320 if (!emit_alu(emit,
398 begin_tex(struct r300_emit_state * emit) argument
423 emit_tex(struct r300_emit_state * emit, struct rc_instruction * inst) argument
480 struct r300_emit_state emit; local
[all...]

Completed in 781 milliseconds

1234567891011>>