1f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org/*
2f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Copyright 2010 Marek Olšák <maraeo@gmail.com>
3f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
4f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Permission is hereby granted, free of charge, to any person obtaining a
5f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * copy of this software and associated documentation files (the "Software"),
6f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * to deal in the Software without restriction, including without limitation
7f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * on the rights to use, copy, modify, merge, publish, distribute, sub
8f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * license, and/or sell copies of the Software, and to permit persons to whom
9f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * the Software is furnished to do so, subject to the following conditions:
10f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
11f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * The above copyright notice and this permission notice (including the next
12f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * paragraph) shall be included in all copies or substantial portions of the
13f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Software.
14f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
15f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * USE OR OTHER DEALINGS IN THE SOFTWARE. */
22f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
23f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#ifndef UTIL_INDEX_MODIFY_H
24f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#define UTIL_INDEX_MODIFY_H
25f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
26f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgstruct pipe_context;
27f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgstruct pipe_resource;
28f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgstruct pipe_index_buffer;
29f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
30f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgvoid util_shorten_ubyte_elts_to_userptr(struct pipe_context *context,
31f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org					struct pipe_index_buffer *ib,
32f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org					int index_bias,
33f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org					unsigned start,
34f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org					unsigned count,
35f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org					void *out);
36f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
37f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgvoid util_shorten_ubyte_elts(struct pipe_context *context,
38f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			     struct pipe_index_buffer *ib,
39f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			     struct pipe_resource **out_buf,
40f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			     int index_bias,
41f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			     unsigned start,
42f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			     unsigned count);
43f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
44f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
45f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
46f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgvoid util_rebuild_ushort_elts_to_userptr(struct pipe_context *context,
47f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org					 struct pipe_index_buffer *ib,
48f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org					 int index_bias,
49f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org					 unsigned start, unsigned count,
50f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org					 void *out);
51f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
52f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgvoid util_rebuild_ushort_elts(struct pipe_context *context,
53f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			      struct pipe_index_buffer *ib,
54f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			      struct pipe_resource **out_buf,
55f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			      int index_bias,
56f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			      unsigned start, unsigned count);
57f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
58f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
59f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
60f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgvoid util_rebuild_uint_elts_to_userptr(struct pipe_context *context,
61f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org				       struct pipe_index_buffer *ib,
62f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org				       int index_bias,
63f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org				       unsigned start, unsigned count,
64f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org				       void *out);
65f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
66f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgvoid util_rebuild_uint_elts(struct pipe_context *context,
67f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			    struct pipe_index_buffer *ib,
68f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			    struct pipe_resource **out_buf,
69f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			    int index_bias,
70f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org			    unsigned start, unsigned count);
71f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
72f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#endif
73