summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_pt_so_emit.c
blob: bb153cedfa01e5f1d08f0dbc59891ded527e9868 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/**************************************************************************
 *
 * Copyright 2010 VMware, Inc.
 * All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sub license, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial portions
 * of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 **************************************************************************/

#include "util/u_memory.h"
#include "draw/draw_context.h"
#include "draw/draw_private.h"
#include "draw/draw_vbuf.h"
#include "draw/draw_vertex.h"
#include "draw/draw_pt.h"
#include "translate/translate.h"
#include "translate/translate_cache.h"

struct pt_so_emit {
   struct draw_context *draw;

   struct translate *translate;

   struct translate_cache *cache;
   unsigned prim;

   const struct vertex_info *vinfo;
   boolean has_so;
};

static void
prepare_so_emit( struct pt_so_emit *emit,
                 const struct vertex_info *vinfo )
{
   struct draw_context *draw = emit->draw;
   unsigned i;
   struct translate_key hw_key;
   unsigned dst_offset = 0;

   if (emit->has_so) {
      for (i = 0; i < draw->so.state.num_outputs; ++i) {
         unsigned src_offset = (draw->so.state.register_index[i] * 4 *
                                sizeof(float) );
         unsigned output_format;
         unsigned emit_sz = 0;
         /*unsigned output_bytes = util_format_get_blocksize(output_format);
           unsigned nr_compo = util_format_get_nr_components(output_format);*/

         output_format = draw_translate_vinfo_format(vinfo->attrib[i].emit);
         emit_sz = draw_translate_vinfo_size(vinfo->attrib[i].emit);

         /* doesn't handle EMIT_OMIT */
         assert(emit_sz != 0);

         if (draw->so.state.register_mask[i] != TGSI_WRITEMASK_XYZW) {
            /* we only support rendering with XYZW writemask*/
            debug_printf("NOT_IMPLEMENTED(writemask with stream output) at %s: %s:%d\n",
                         __FUNCTION__, __FILE__, __LINE__);
         }

         hw_key.element[i].type = TRANSLATE_ELEMENT_NORMAL;
         hw_key.element[i].input_format = PIPE_FORMAT_R32G32B32A32_FLOAT;
         hw_key.element[i].input_buffer = 0;
         hw_key.element[i].input_offset = src_offset;
         hw_key.element[i].instance_divisor = 0;
         hw_key.element[i].output_format = output_format;
         hw_key.element[i].output_offset = dst_offset;

         dst_offset += emit_sz;
      }
      hw_key.nr_elements = draw->so.state.num_outputs;
      hw_key.output_stride = draw->so.state.stride;

      if (!emit->translate ||
          translate_key_compare(&emit->translate->key, &hw_key) != 0)
      {
         translate_key_sanitize(&hw_key);
         emit->translate = translate_cache_find(emit->cache, &hw_key);
      }
   } else {
      /* no stream output */
      emit->translate = NULL;
   }
}


void draw_pt_so_emit_prepare( struct pt_so_emit *emit,
                              unsigned prim )
{
   struct draw_context *draw = emit->draw;
   boolean ok;

   emit->has_so = (draw->so.state.num_outputs > 0);

   if (!emit->has_so)
      return;

   /* XXX: need to flush to get prim_vbuf.c to release its allocation??
    */
   draw_do_flush( draw, DRAW_FLUSH_BACKEND );

   emit->prim = prim;

   ok = draw->render->set_primitive(draw->render, emit->prim);
   if (!ok) {
      assert(0);
      return;
   }

   /* Must do this after set_primitive() above: */
   emit->vinfo = draw->render->get_vertex_info(draw->render);

   prepare_so_emit( emit, emit->vinfo );
}


void draw_pt_so_emit( struct pt_so_emit *emit,
		   const float (*vertex_data)[4],
		   unsigned vertex_count,
		   unsigned stride )
{
   struct draw_context *draw = emit->draw;
   struct translate *translate = emit->translate;
   struct vbuf_render *render = draw->render;
   void *so_buffer;

   if (!emit->has_so)
      return;

   so_buffer = draw->so.buffers[0];

   /* XXX: need to flush to get prim_vbuf.c to release its allocation??*/
   draw_do_flush( draw, DRAW_FLUSH_BACKEND );

   if (vertex_count == 0)
      return;

   if (vertex_count >= UNDEFINED_VERTEX_ID) {
      assert(0);
      return;
   }

   /* XXX we only support single output buffer */
   if (draw->so.num_buffers != 1) {
      debug_printf("NOT_IMPLEMENTED(multiple stream output buffers) at %s: %s:%d\n",
                   __FUNCTION__, __FILE__, __LINE__);
   }

   translate->set_buffer(translate, 0, vertex_data,
                         stride, ~0);
   translate->run(translate, 0, vertex_count,
                  draw->instance_id, so_buffer);

   render->set_stream_output_info(render, 0, vertex_count);
}


struct pt_so_emit *draw_pt_so_emit_create( struct draw_context *draw )
{
   struct pt_so_emit *emit = CALLOC_STRUCT(pt_so_emit);
   if (!emit)
      return NULL;

   emit->draw = draw;
   emit->cache = translate_cache_create();
   if (!emit->cache) {
      FREE(emit);
      return NULL;
   }

   return emit;
}

void draw_pt_so_emit_destroy( struct pt_so_emit *emit )
{
   if (emit->cache)
      translate_cache_destroy(emit->cache);

   FREE(emit);
}