8f31f05e478feff7ab567e4c02d53c8ff0631572
[mesa.git] / src / gallium / drivers / softpipe / sp_texture.c
1 /**************************************************************************
2 *
3 * Copyright 2006 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 * Authors:
29 * Keith Whitwell <keith@tungstengraphics.com>
30 * Michel Dänzer <michel@tungstengraphics.com>
31 */
32
33 #include "pipe/p_context.h"
34 #include "pipe/p_defines.h"
35 #include "pipe/p_inlines.h"
36 #include "pipe/p_util.h"
37 #include "pipe/p_winsys.h"
38
39 #include "sp_context.h"
40 #include "sp_state.h"
41 #include "sp_texture.h"
42 #include "sp_tile_cache.h"
43
44
45 /* Simple, maximally packed layout.
46 */
47
48 static unsigned minify( unsigned d )
49 {
50 return MAX2(1, d>>1);
51 }
52
53
54 static void
55 softpipe_texture_layout(struct softpipe_texture * spt)
56 {
57 struct pipe_texture *pt = &spt->base;
58 unsigned level;
59 unsigned width = pt->width[0];
60 unsigned height = pt->height[0];
61 unsigned depth = pt->depth[0];
62
63 spt->buffer_size = 0;
64
65 for (level = 0; level <= pt->last_level; level++) {
66 pt->width[level] = width;
67 pt->height[level] = height;
68 pt->depth[level] = depth;
69
70 spt->level_offset[level] = spt->buffer_size;
71
72 spt->buffer_size += ((pt->compressed) ? MAX2(1, height/4) : height) *
73 ((pt->target == PIPE_TEXTURE_CUBE) ? 6 : depth) *
74 width * pt->cpp;
75
76 width = minify(width);
77 height = minify(height);
78 depth = minify(depth);
79 }
80 }
81
82
83 struct pipe_texture *
84 softpipe_texture_create(struct pipe_context *pipe,
85 const struct pipe_texture *templat)
86 {
87 struct softpipe_texture *spt = CALLOC_STRUCT(softpipe_texture);
88 if (!spt)
89 return NULL;
90
91 spt->base = *templat;
92
93 softpipe_texture_layout(spt);
94
95 spt->buffer = pipe->winsys->buffer_create(pipe->winsys, 32,
96 PIPE_BUFFER_USAGE_PIXEL,
97 spt->buffer_size);
98 if (!spt->buffer) {
99 FREE(spt);
100 return NULL;
101 }
102
103 return &spt->base;
104 }
105
106
107 void
108 softpipe_texture_release(struct pipe_context *pipe, struct pipe_texture **pt)
109 {
110 if (!*pt)
111 return;
112
113 /*
114 DBG("%s %p refcount will be %d\n",
115 __FUNCTION__, (void *) *pt, (*pt)->refcount - 1);
116 */
117 if (--(*pt)->refcount <= 0) {
118 struct softpipe_texture *spt = softpipe_texture(*pt);
119
120 /*
121 DBG("%s deleting %p\n", __FUNCTION__, (void *) spt);
122 */
123
124 pipe_buffer_reference(pipe->winsys, &spt->buffer, NULL);
125
126 FREE(spt);
127 }
128 *pt = NULL;
129 }
130
131
132 void
133 softpipe_texture_update(struct pipe_context *pipe,
134 struct pipe_texture *texture)
135 {
136 struct softpipe_context *softpipe = softpipe_context(pipe);
137 uint unit;
138 for (unit = 0; unit < PIPE_MAX_SAMPLERS; unit++) {
139 if (softpipe->texture[unit] == texture) {
140 sp_flush_tile_cache(softpipe, softpipe->tex_cache[unit]);
141 }
142 }
143 }
144
145
146 /**
147 * Called via pipe->get_tex_surface()
148 */
149 struct pipe_surface *
150 softpipe_get_tex_surface(struct pipe_context *pipe,
151 struct pipe_texture *pt,
152 unsigned face, unsigned level, unsigned zslice)
153 {
154 struct softpipe_texture *spt = softpipe_texture(pt);
155 struct pipe_surface *ps;
156
157 assert(level <= pt->last_level);
158
159 ps = pipe->winsys->surface_alloc(pipe->winsys);
160 if (ps) {
161 assert(ps->refcount);
162 assert(ps->winsys);
163 pipe_buffer_reference(pipe->winsys, &ps->buffer, spt->buffer);
164 ps->format = pt->format;
165 ps->cpp = pt->cpp;
166 ps->width = pt->width[level];
167 ps->height = pt->height[level];
168 ps->pitch = ps->width;
169 ps->offset = spt->level_offset[level];
170
171 if (pt->target == PIPE_TEXTURE_CUBE || pt->target == PIPE_TEXTURE_3D) {
172 ps->offset += ((pt->target == PIPE_TEXTURE_CUBE) ? face : zslice) *
173 (pt->compressed ? ps->height/4 : ps->height) *
174 ps->width * ps->cpp;
175 } else {
176 assert(face == 0);
177 assert(zslice == 0);
178 }
179 }
180 return ps;
181 }