Merge remote branch 'origin/master' into nv50-compiler
[mesa.git] / src / gallium / drivers / r300 / r300_texture_desc.h
1 /*
2 * Copyright 2008 Corbin Simpson <MostAwesomeDude@gmail.com>
3 * Copyright 2010 Marek Olšák <maraeo@gmail.com>
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
23
24 #ifndef R300_TEXTURE_DESC_H
25 #define R300_TEXTURE_DESC_H
26
27 #include "pipe/p_format.h"
28 #include "r300_defines.h"
29
30 struct pipe_resource;
31 struct r300_screen;
32 struct r300_texture_desc;
33 struct r300_texture;
34
35 enum r300_dim {
36 DIM_WIDTH = 0,
37 DIM_HEIGHT = 1
38 };
39
40 unsigned r300_get_pixel_alignment(enum pipe_format format,
41 unsigned num_samples,
42 enum r300_buffer_tiling microtile,
43 enum r300_buffer_tiling macrotile,
44 enum r300_dim dim);
45
46 boolean r300_texture_desc_init(struct r300_screen *rscreen,
47 struct r300_texture_desc *desc,
48 const struct pipe_resource *base,
49 enum r300_buffer_tiling microtile,
50 enum r300_buffer_tiling macrotile,
51 unsigned stride_in_bytes_override,
52 unsigned max_buffer_size);
53
54 unsigned r300_texture_get_offset(struct r300_texture_desc *desc,
55 unsigned level, unsigned zslice,
56 unsigned face);
57
58 #endif