6b78750f1ae1ec6d1bb351ed24ed71033a179052
[profile/ivi/mesa.git] / src / gallium / drivers / llvmpipe / lp_texture.h
1 /**************************************************************************
2  * 
3  * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4  * All Rights Reserved.
5  * 
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the
8  * "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sub license, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  * 
14  * The above copyright notice and this permission notice (including the
15  * next paragraph) shall be included in all copies or substantial portions
16  * of the Software.
17  * 
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21  * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25  * 
26  **************************************************************************/
27
28 #ifndef LP_TEXTURE_H
29 #define LP_TEXTURE_H
30
31
32 #include "pipe/p_state.h"
33 #include "util/u_debug.h"
34
35
36 #define LP_MAX_TEXTURE_2D_LEVELS 12  /* 2K x 2K for now */
37 #define LP_MAX_TEXTURE_3D_LEVELS 10  /* 512 x 512 x 512 for now */
38
39
40 struct pipe_context;
41 struct pipe_screen;
42 struct llvmpipe_context;
43
44 struct sw_displaytarget;
45
46
47 struct llvmpipe_texture
48 {
49    struct pipe_texture base;
50
51    unsigned long level_offset[LP_MAX_TEXTURE_2D_LEVELS];
52    unsigned stride[LP_MAX_TEXTURE_2D_LEVELS];
53
54    /**
55     * Display target, for textures with the PIPE_TEXTURE_USAGE_DISPLAY_TARGET
56     * usage.
57     */
58    struct sw_displaytarget *dt;
59
60    /**
61     * Malloc'ed data for regular textures, or a mapping to dt above.
62     */
63    void *data;
64
65    unsigned timestamp;
66 };
67
68
69 struct llvmpipe_transfer
70 {
71    struct pipe_transfer base;
72
73    unsigned long offset;
74 };
75
76
77 /** cast wrappers */
78 static INLINE struct llvmpipe_texture *
79 llvmpipe_texture(struct pipe_texture *pt)
80 {
81    return (struct llvmpipe_texture *) pt;
82 }
83
84
85 static INLINE const struct llvmpipe_texture *
86 llvmpipe_texture_const(const struct pipe_texture *pt)
87 {
88    return (const struct llvmpipe_texture *) pt;
89 }
90
91
92 static INLINE struct llvmpipe_transfer *
93 llvmpipe_transfer(struct pipe_transfer *pt)
94 {
95    return (struct llvmpipe_transfer *) pt;
96 }
97
98
99 static INLINE unsigned
100 llvmpipe_texture_stride(struct pipe_texture *texture,
101                         unsigned level)
102 {
103    struct llvmpipe_texture *lpt = llvmpipe_texture(texture);
104    assert(level < LP_MAX_TEXTURE_2D_LEVELS);
105    return lpt->stride[level];
106 }
107
108
109 void *
110 llvmpipe_texture_map(struct pipe_texture *texture,
111                      unsigned face,
112                      unsigned level,
113                      unsigned zslice);
114
115 void
116 llvmpipe_texture_unmap(struct pipe_texture *texture,
117                        unsigned face,
118                        unsigned level,
119                        unsigned zslice);
120
121 extern void
122 llvmpipe_init_screen_texture_funcs(struct pipe_screen *screen);
123
124 extern void
125 llvmpipe_init_context_texture_funcs(struct pipe_context *pipe);
126
127 #endif /* LP_TEXTURE_H */