2bdfade8a5434a6466cfbc12a39f334130313c9b
[mesa.git] / src / gallium / auxiliary / indices / u_primconvert.c
1 /*
2 * Copyright (C) 2013 Rob Clark <robclark@freedesktop.org>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors:
24 * Rob Clark <robclark@freedesktop.org>
25 */
26
27 /**
28 * This module converts provides a more convenient front-end to u_indices,
29 * etc, utils to convert primitive types supported not supported by the
30 * hardware. It handles binding new index buffer state, and restoring
31 * previous state after. To use, put something like this at the front of
32 * drivers pipe->draw_vbo():
33 *
34 * // emulate unsupported primitives:
35 * if (info->mode needs emulating) {
36 * util_primconvert_save_index_buffer(ctx->primconvert, &ctx->indexbuf);
37 * util_primconvert_save_rasterizer_state(ctx->primconvert, ctx->rasterizer);
38 * util_primconvert_draw_vbo(ctx->primconvert, info);
39 * return;
40 * }
41 *
42 */
43
44 #include "pipe/p_state.h"
45 #include "util/u_draw.h"
46 #include "util/u_inlines.h"
47 #include "util/u_memory.h"
48 #include "util/u_upload_mgr.h"
49
50 #include "indices/u_indices.h"
51 #include "indices/u_primconvert.h"
52
53 struct primconvert_context
54 {
55 struct pipe_context *pipe;
56 struct pipe_index_buffer saved_ib;
57 uint32_t primtypes_mask;
58 unsigned api_pv;
59 };
60
61
62 struct primconvert_context *
63 util_primconvert_create(struct pipe_context *pipe, uint32_t primtypes_mask)
64 {
65 struct primconvert_context *pc = CALLOC_STRUCT(primconvert_context);
66 if (!pc)
67 return NULL;
68 pc->pipe = pipe;
69 pc->primtypes_mask = primtypes_mask;
70 return pc;
71 }
72
73 void
74 util_primconvert_destroy(struct primconvert_context *pc)
75 {
76 util_primconvert_save_index_buffer(pc, NULL);
77 FREE(pc);
78 }
79
80 void
81 util_primconvert_save_index_buffer(struct primconvert_context *pc,
82 const struct pipe_index_buffer *ib)
83 {
84 if (ib) {
85 pipe_resource_reference(&pc->saved_ib.buffer, ib->buffer);
86 pc->saved_ib.index_size = ib->index_size;
87 pc->saved_ib.offset = ib->offset;
88 pc->saved_ib.user_buffer = ib->user_buffer;
89 }
90 else {
91 pipe_resource_reference(&pc->saved_ib.buffer, NULL);
92 }
93 }
94
95 void
96 util_primconvert_save_rasterizer_state(struct primconvert_context *pc,
97 const struct pipe_rasterizer_state
98 *rast)
99 {
100 /* if we actually translated the provoking vertex for the buffer,
101 * we would actually need to save/restore rasterizer state. As
102 * it is, we just need to make note of the pv.
103 */
104 pc->api_pv = rast->flatshade_first ? PV_FIRST : PV_LAST;
105 }
106
107 void
108 util_primconvert_draw_vbo(struct primconvert_context *pc,
109 const struct pipe_draw_info *info)
110 {
111 struct pipe_index_buffer *ib = &pc->saved_ib;
112 struct pipe_index_buffer new_ib;
113 struct pipe_draw_info new_info;
114 struct pipe_transfer *src_transfer = NULL;
115 u_translate_func trans_func;
116 u_generate_func gen_func;
117 const void *src = NULL;
118 void *dst;
119
120 memset(&new_ib, 0, sizeof(new_ib));
121 util_draw_init_info(&new_info);
122 new_info.indexed = true;
123 new_info.min_index = info->min_index;
124 new_info.max_index = info->max_index;
125 new_info.index_bias = info->index_bias;
126 new_info.start_instance = info->start_instance;
127 new_info.instance_count = info->instance_count;
128 new_info.primitive_restart = info->primitive_restart;
129 new_info.restart_index = info->restart_index;
130 if (info->indexed) {
131 u_index_translator(pc->primtypes_mask,
132 info->mode, pc->saved_ib.index_size, info->count,
133 pc->api_pv, pc->api_pv,
134 info->primitive_restart ? PR_ENABLE : PR_DISABLE,
135 &new_info.mode, &new_ib.index_size, &new_info.count,
136 &trans_func);
137 src = ib->user_buffer;
138 if (!src) {
139 src = pipe_buffer_map(pc->pipe, ib->buffer,
140 PIPE_TRANSFER_READ, &src_transfer);
141 }
142 src = (const uint8_t *)src + ib->offset;
143 }
144 else {
145 u_index_generator(pc->primtypes_mask,
146 info->mode, info->start, info->count,
147 pc->api_pv, pc->api_pv,
148 &new_info.mode, &new_ib.index_size, &new_info.count,
149 &gen_func);
150 }
151
152 u_upload_alloc(pc->pipe->stream_uploader, 0, new_ib.index_size * new_info.count, 4,
153 &new_ib.offset, &new_ib.buffer, &dst);
154
155 if (info->indexed) {
156 trans_func(src, info->start, info->count, new_info.count, info->restart_index, dst);
157 }
158 else {
159 gen_func(info->start, new_info.count, dst);
160 }
161
162 if (src_transfer)
163 pipe_buffer_unmap(pc->pipe, src_transfer);
164
165 u_upload_unmap(pc->pipe->stream_uploader);
166
167 /* bind new index buffer: */
168 pc->pipe->set_index_buffer(pc->pipe, &new_ib);
169
170 /* to the translated draw: */
171 pc->pipe->draw_vbo(pc->pipe, &new_info);
172
173 /* and then restore saved ib: */
174 pc->pipe->set_index_buffer(pc->pipe, ib);
175
176 pipe_resource_reference(&new_ib.buffer, NULL);
177 }