Lines Matching refs:stream
7366 ir_rvalue *stream = new(mem_ctx) ir_constant(0, 1);
7367 body.emit(new(mem_ctx) ir_emit_vertex(stream));
7379 * primitive on stream stream. The argument to stream must be a constant
7382 ir_variable *stream =
7383 new(mem_ctx) ir_variable(stream_type, "stream", ir_var_const_in);
7385 MAKE_SIG(glsl_type::void_type, avail, 1, stream);
7387 body.emit(new(mem_ctx) ir_emit_vertex(var_ref(stream)));
7397 ir_rvalue *stream = new(mem_ctx) ir_constant(0, 1);
7398 body.emit(new(mem_ctx) ir_end_primitive(stream));
7409 * "Completes the current output primitive on stream stream and starts
7410 * a new one. The argument to stream must be a constant integral
7413 ir_variable *stream =
7414 new(mem_ctx) ir_variable(stream_type, "stream", ir_var_const_in);
7416 MAKE_SIG(glsl_type::void_type, avail, 1, stream);
7418 body.emit(new(mem_ctx) ir_end_primitive(var_ref(stream)));