962ff18fede9f14faa9c2906efdcb71cbc836d1b
[profile/ivi/mesa.git] / src / mesa / drivers / dri / i965 / brw_primitive_restart.c
1 /*
2  * Copyright © 2012 Intel Corporation
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
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21  * IN THE SOFTWARE.
22  *
23  * Authors:
24  *    Jordan Justen <jordan.l.justen@intel.com>
25  *
26  */
27
28 #include "main/imports.h"
29 #include "main/bufferobj.h"
30
31 #include "brw_context.h"
32 #include "brw_draw.h"
33
34 /**
35  * Check if the hardware's cut index support can handle the primitive
36  * restart index value.
37  */
38 static bool
39 can_cut_index_handle_restart_index(struct gl_context *ctx,
40                                    const struct _mesa_index_buffer *ib)
41 {
42    bool cut_index_will_work;
43
44    switch (ib->type) {
45    case GL_UNSIGNED_BYTE:
46       cut_index_will_work = (ctx->Array.RestartIndex & 0xff) == 0xff;
47       break;
48    case GL_UNSIGNED_SHORT:
49       cut_index_will_work = (ctx->Array.RestartIndex & 0xffff) == 0xffff;
50       break;
51    case GL_UNSIGNED_INT:
52       cut_index_will_work = ctx->Array.RestartIndex == 0xffffffff;
53       break;
54    default:
55       cut_index_will_work = false;
56       assert(0);
57    }
58
59    return cut_index_will_work;
60 }
61
62 /**
63  * Check if the hardware's cut index support can handle the primitive
64  * restart case.
65  */
66 static bool
67 can_cut_index_handle_prims(struct gl_context *ctx,
68                            const struct _mesa_prim *prim,
69                            GLuint nr_prims,
70                            const struct _mesa_index_buffer *ib)
71 {
72    if (!can_cut_index_handle_restart_index(ctx, ib)) {
73       /* The primitive restart index can't be handled, so take
74        * the software path
75        */
76       return false;
77    }
78
79    for ( ; nr_prims > 0; nr_prims--) {
80       switch(prim->mode) {
81       case GL_POINTS:
82       case GL_LINES:
83       case GL_LINE_STRIP:
84       case GL_TRIANGLES:
85       case GL_TRIANGLE_STRIP:
86          /* Cut index supports these primitive types */
87          break;
88       default:
89          /* Cut index does not support these primitive types */
90       //case GL_LINE_LOOP:
91       //case GL_TRIANGLE_FAN:
92       //case GL_QUADS:
93       //case GL_QUAD_STRIP:
94       //case GL_POLYGON:
95          return false;
96       }
97    }
98
99    return true;
100 }
101
102 /**
103  * Check if primitive restart is enabled, and if so, handle it properly.
104  *
105  * In some cases the support will be handled in software. When available
106  * hardware will handle primitive restart.
107  */
108 GLboolean
109 brw_handle_primitive_restart(struct gl_context *ctx,
110                              const struct _mesa_prim *prim,
111                              GLuint nr_prims,
112                              const struct _mesa_index_buffer *ib)
113 {
114    struct brw_context *brw = brw_context(ctx);
115
116    /* We only need to handle cases where there is an index buffer. */
117    if (ib == NULL) {
118       return GL_FALSE;
119    }
120
121    /* If the driver has requested software handling of primitive restarts,
122     * then the VBO module has already taken care of things, and we can
123     * just draw as normal.
124     */
125    if (ctx->Const.PrimitiveRestartInSoftware) {
126       return GL_FALSE;
127    }
128
129    /* If we have set the in_progress flag, then we are in the middle
130     * of handling the primitive restart draw.
131     */
132    if (brw->prim_restart.in_progress) {
133       return GL_FALSE;
134    }
135
136    /* If PrimitiveRestart is not enabled, then we aren't concerned about
137     * handling this draw.
138     */
139    if (!(ctx->Array.PrimitiveRestart)) {
140       return GL_FALSE;
141    }
142
143    /* Signal that we are in the process of handling the
144     * primitive restart draw
145     */
146    brw->prim_restart.in_progress = true;
147
148    if (can_cut_index_handle_prims(ctx, prim, nr_prims, ib)) {
149       /* Cut index should work for primitive restart, so use it
150        */
151       brw->prim_restart.enable_cut_index = true;
152       brw_draw_prims(ctx, prim, nr_prims, ib, GL_FALSE, -1, -1, NULL);
153       brw->prim_restart.enable_cut_index = false;
154    } else {
155       /* Not all the primitive draw modes are supported by the cut index,
156        * so take the software path
157        */
158       vbo_sw_primitive_restart(ctx, prim, nr_prims, ib);
159    }
160
161    brw->prim_restart.in_progress = false;
162
163    /* The primitive restart draw was completed, so return true. */
164    return GL_TRUE;
165 }
166