Searched refs:min_index (Results 1 - 25 of 100) sorted by relevance

1234

/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_rebase.c45 * indices of a draw call so that it can be re-issued with a min_index
59 TYPE min_index ) \
66 tmp_indices[i] = in[i] - min_index; \
99 /* Adjust primitives, indices and vertex definitions so that min_index
103 * - any time min_index != 0, otherwise unused vertices lower than
104 * min_index will be transformed.
107 * - if ib != NULL and min_index != 0, otherwise vertices lower than
108 * min_index will be uploaded. Requires adjusting index values.
110 * - if ib == NULL and min_index != 0, just for convenience so this doesn't
123 GLuint min_index,
118 vbo_rebase_prims( struct gl_context *ctx, const struct gl_client_array *arrays[], const struct _mesa_prim *prim, GLuint nr_prims, const struct _mesa_index_buffer *ib, GLuint min_index, GLuint max_index, vbo_draw_func draw ) argument
[all...]
H A Dvbo_split.c106 GLuint min_index,
131 else if (max_index - min_index >= limits->max_verts) {
146 min_index, max_index, draw, limits );
154 if (max_index - min_index >= limits->max_verts) {
160 min_index, max_index, draw, limits );
101 vbo_split_prims( struct gl_context *ctx, const struct gl_client_array *arrays[], const struct _mesa_prim *prim, GLuint nr_prims, const struct _mesa_index_buffer *ib, GLuint min_index, GLuint max_index, vbo_draw_func draw, const struct split_limits *limits ) argument
H A Dvbo_split_inplace.c49 GLuint min_index; member in struct:split_context
76 ib.count = split->max_index - split->min_index + 1;
78 split->min_index * _mesa_sizeof_type(ib.type));
82 split->dstprim[i].start -= split->min_index;
85 assert(split->max_index >= split->min_index);
95 split->min_index,
103 split->min_index = ~0;
124 split->min_index = MIN2(split->min_index, prim->start);
135 if ((prim->start > split->min_index
264 vbo_split_inplace( struct gl_context *ctx, const struct gl_client_array *arrays[], const struct _mesa_prim *prim, GLuint nr_prims, const struct _mesa_index_buffer *ib, GLuint min_index, GLuint max_index, vbo_draw_func draw, const struct split_limits *limits ) argument
[all...]
H A Dvbo_split.h57 GLuint min_index,
H A Dvbo_primitive_restart.c68 GLuint min_index; member in struct:sub_primitive
104 sub_prims[scan_num].min_index = (GL##TYPE) 0xffffffff; \
114 sub_prims[scan_num].min_index = (GL##TYPE) 0xffffffff; \
121 UPDATE_MIN2(sub_prims[scan_num].min_index, scan_index); \
215 GL_TRUE, sub_prim->min_index, sub_prim->max_index,
/external/mesa3d/src/mesa/vbo/
H A Dvbo_rebase.c45 * indices of a draw call so that it can be re-issued with a min_index
59 TYPE min_index ) \
66 tmp_indices[i] = in[i] - min_index; \
99 /* Adjust primitives, indices and vertex definitions so that min_index
103 * - any time min_index != 0, otherwise unused vertices lower than
104 * min_index will be transformed.
107 * - if ib != NULL and min_index != 0, otherwise vertices lower than
108 * min_index will be uploaded. Requires adjusting index values.
110 * - if ib == NULL and min_index != 0, just for convenience so this doesn't
123 GLuint min_index,
118 vbo_rebase_prims( struct gl_context *ctx, const struct gl_client_array *arrays[], const struct _mesa_prim *prim, GLuint nr_prims, const struct _mesa_index_buffer *ib, GLuint min_index, GLuint max_index, vbo_draw_func draw ) argument
[all...]
H A Dvbo_split.c106 GLuint min_index,
131 else if (max_index - min_index >= limits->max_verts) {
146 min_index, max_index, draw, limits );
154 if (max_index - min_index >= limits->max_verts) {
160 min_index, max_index, draw, limits );
101 vbo_split_prims( struct gl_context *ctx, const struct gl_client_array *arrays[], const struct _mesa_prim *prim, GLuint nr_prims, const struct _mesa_index_buffer *ib, GLuint min_index, GLuint max_index, vbo_draw_func draw, const struct split_limits *limits ) argument
H A Dvbo_split_inplace.c49 GLuint min_index; member in struct:split_context
76 ib.count = split->max_index - split->min_index + 1;
78 split->min_index * _mesa_sizeof_type(ib.type));
82 split->dstprim[i].start -= split->min_index;
85 assert(split->max_index >= split->min_index);
95 split->min_index,
103 split->min_index = ~0;
124 split->min_index = MIN2(split->min_index, prim->start);
135 if ((prim->start > split->min_index
264 vbo_split_inplace( struct gl_context *ctx, const struct gl_client_array *arrays[], const struct _mesa_prim *prim, GLuint nr_prims, const struct _mesa_index_buffer *ib, GLuint min_index, GLuint max_index, vbo_draw_func draw, const struct split_limits *limits ) argument
[all...]
H A Dvbo_split.h57 GLuint min_index,
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_draw.h56 GLuint min_index,
66 GLuint min_index,
/external/mesa3d/src/mesa/state_tracker/
H A Dst_draw.h56 GLuint min_index,
66 GLuint min_index,
/external/chromium_org/tools/json_comment_eater/
H A Djson_comment_eater.py24 min_index, min_key = (-1, None)
27 if index != -1 and (min_index == -1 or index < min_index):
28 min_index, min_key = (index, k)
29 return (min_index, min_key)
/external/chromium_org/net/base/
H A Dnet_log_unittest.h110 // Check if the log contains any entry of the given type at |min_index| or
114 int min_index, // Negative indices are reverse indices.
117 size_t real_index = (min_index < 0) ?
118 static_cast<size_t>(static_cast<int>(entries.size()) + min_index) :
119 static_cast<size_t>(min_index);
129 // as long as the first index where it is found is at least |min_index|.
133 size_t min_index,
144 EXPECT_GE(i, min_index);
149 // as long as one index where it is found is at least |min_index|.
153 size_t min_index,
112 LogContainsEntryWithTypeAfter( const CapturingNetLog::CapturedEntryList& entries, int min_index, NetLog::EventType type) argument
131 ExpectLogContainsSomewhere( const CapturingNetLog::CapturedEntryList& entries, size_t min_index, NetLog::EventType expected_event, NetLog::EventPhase expected_phase) argument
151 ExpectLogContainsSomewhereAfter( const CapturingNetLog::CapturedEntryList& entries, size_t min_index, NetLog::EventType expected_event, NetLog::EventPhase expected_phase) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_draw.h42 GLuint min_index,
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_draw.h42 GLuint min_index,
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_draw_private.h110 unsigned min_index[QSZ]; member in struct:draw_cmd
151 unsigned min_index,
160 unsigned min_index,
H A Dsvga_draw_elements.c104 unsigned min_index,
150 ret = svga_hwtnl_prim( hwtnl, &range, min_index, max_index, index_buffer );
169 unsigned min_index,
210 min_index,
238 min_index,
100 svga_hwtnl_simple_draw_range_elements( struct svga_hwtnl *hwtnl, struct pipe_resource *index_buffer, unsigned index_size, int index_bias, unsigned min_index, unsigned max_index, unsigned prim, unsigned start, unsigned count ) argument
165 svga_hwtnl_draw_range_elements( struct svga_hwtnl *hwtnl, struct pipe_resource *index_buffer, unsigned index_size, int index_bias, unsigned min_index, unsigned max_index, unsigned prim, unsigned start, unsigned count) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_draw_private.h110 unsigned min_index[QSZ]; member in struct:draw_cmd
151 unsigned min_index,
160 unsigned min_index,
H A Dsvga_draw_elements.c104 unsigned min_index,
150 ret = svga_hwtnl_prim( hwtnl, &range, min_index, max_index, index_buffer );
169 unsigned min_index,
210 min_index,
238 min_index,
100 svga_hwtnl_simple_draw_range_elements( struct svga_hwtnl *hwtnl, struct pipe_resource *index_buffer, unsigned index_size, int index_bias, unsigned min_index, unsigned max_index, unsigned prim, unsigned start, unsigned count ) argument
165 svga_hwtnl_draw_range_elements( struct svga_hwtnl *hwtnl, struct pipe_resource *index_buffer, unsigned index_size, int index_bias, unsigned min_index, unsigned max_index, unsigned prim, unsigned start, unsigned count) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_draw.h60 info.min_index = start;
96 info.min_index = start;
126 uint min_index,
138 info.min_index = min_index;
124 util_draw_range_elements(struct pipe_context *pipe, int index_bias, uint min_index, uint max_index, uint mode, uint start, uint count) argument
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_draw.h60 info.min_index = start;
96 info.min_index = start;
126 uint min_index,
138 info.min_index = min_index;
124 util_draw_range_elements(struct pipe_context *pipe, int index_bias, uint min_index, uint max_index, uint mode, uint start, uint count) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pt_vsplit_tmp.h33 * Fetch all elements in [min_index, max_index] with bias, and use the
42 const unsigned min_index = draw->pt.user.min_index; local
52 if (min_index == 0 && sizeof(ib[0]) == sizeof(draw_elts[0])) {
58 if (idx < min_index || idx > max_index) {
71 if (max_index - min_index > icount - 1)
74 if (elt_bias < 0 && min_index < -elt_bias)
83 fetch_start = min_index + elt_bias;
84 fetch_count = max_index - min_index + 1;
87 if (min_index
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt_vsplit_tmp.h33 * Fetch all elements in [min_index, max_index] with bias, and use the
42 const unsigned min_index = draw->pt.user.min_index; local
52 if (min_index == 0 && sizeof(ib[0]) == sizeof(draw_elts[0])) {
58 if (idx < min_index || idx > max_index) {
71 if (max_index - min_index > icount - 1)
74 if (elt_bias < 0 && min_index < -elt_bias)
83 fetch_start = min_index + elt_bias;
84 fetch_count = max_index - min_index + 1;
87 if (min_index
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dtnl.h84 GLuint min_index,
93 GLuint min_index,
/external/mesa3d/src/mesa/tnl/
H A Dtnl.h84 GLuint min_index,
93 GLuint min_index,

Completed in 8309 milliseconds

1234