r300g: implement MSAA compression and fast MSAA color clear
[mesa.git] / src / gallium / drivers / r300 / r300_texture_desc.c
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 #include "r300_texture_desc.h"
25 #include "r300_context.h"
26
27 #include "util/u_format.h"
28
29 /* Returns the number of pixels that the texture should be aligned to
30 * in the given dimension. */
31 unsigned r300_get_pixel_alignment(enum pipe_format format,
32 unsigned num_samples,
33 enum radeon_bo_layout microtile,
34 enum radeon_bo_layout macrotile,
35 enum r300_dim dim, boolean is_rs690)
36 {
37 static const unsigned table[2][5][3][2] =
38 {
39 {
40 /* Macro: linear linear linear
41 Micro: linear tiled square-tiled */
42 {{ 32, 1}, { 8, 4}, { 0, 0}}, /* 8 bits per pixel */
43 {{ 16, 1}, { 8, 2}, { 4, 4}}, /* 16 bits per pixel */
44 {{ 8, 1}, { 4, 2}, { 0, 0}}, /* 32 bits per pixel */
45 {{ 4, 1}, { 2, 2}, { 0, 0}}, /* 64 bits per pixel */
46 {{ 2, 1}, { 0, 0}, { 0, 0}} /* 128 bits per pixel */
47 },
48 {
49 /* Macro: tiled tiled tiled
50 Micro: linear tiled square-tiled */
51 {{256, 8}, {64, 32}, { 0, 0}}, /* 8 bits per pixel */
52 {{128, 8}, {64, 16}, {32, 32}}, /* 16 bits per pixel */
53 {{ 64, 8}, {32, 16}, { 0, 0}}, /* 32 bits per pixel */
54 {{ 32, 8}, {16, 16}, { 0, 0}}, /* 64 bits per pixel */
55 {{ 16, 8}, { 0, 0}, { 0, 0}} /* 128 bits per pixel */
56 }
57 };
58
59 unsigned tile = 0;
60 unsigned pixsize = util_format_get_blocksize(format);
61
62 assert(macrotile <= RADEON_LAYOUT_TILED);
63 assert(microtile <= RADEON_LAYOUT_SQUARETILED);
64 assert(pixsize <= 16);
65 assert(dim <= DIM_HEIGHT);
66
67 tile = table[macrotile][util_logbase2(pixsize)][microtile][dim];
68 if (macrotile == 0 && is_rs690 && dim == DIM_WIDTH) {
69 int align;
70 int h_tile;
71 h_tile = table[macrotile][util_logbase2(pixsize)][microtile][DIM_HEIGHT];
72 align = 64 / (pixsize * h_tile);
73 if (tile < align)
74 tile = align;
75 }
76
77 assert(tile);
78 return tile;
79 }
80
81 /* Return true if macrotiling should be enabled on the miplevel. */
82 static boolean r300_texture_macro_switch(struct r300_resource *tex,
83 unsigned level,
84 boolean rv350_mode,
85 enum r300_dim dim)
86 {
87 unsigned tile, texdim;
88
89 if (tex->b.b.nr_samples > 1) {
90 return TRUE;
91 }
92
93 tile = r300_get_pixel_alignment(tex->b.b.format, tex->b.b.nr_samples,
94 tex->tex.microtile, RADEON_LAYOUT_TILED, dim, 0);
95 if (dim == DIM_WIDTH) {
96 texdim = u_minify(tex->tex.width0, level);
97 } else {
98 texdim = u_minify(tex->tex.height0, level);
99 }
100
101 /* See TX_FILTER1_n.MACRO_SWITCH. */
102 if (rv350_mode) {
103 return texdim >= tile;
104 } else {
105 return texdim > tile;
106 }
107 }
108
109 /**
110 * Return the stride, in bytes, of the texture image of the given texture
111 * at the given level.
112 */
113 static unsigned r300_texture_get_stride(struct r300_screen *screen,
114 struct r300_resource *tex,
115 unsigned level)
116 {
117 unsigned tile_width, width, stride;
118 boolean is_rs690 = (screen->caps.family == CHIP_RS600 ||
119 screen->caps.family == CHIP_RS690 ||
120 screen->caps.family == CHIP_RS740);
121
122 if (tex->tex.stride_in_bytes_override)
123 return tex->tex.stride_in_bytes_override;
124
125 /* Check the level. */
126 if (level > tex->b.b.last_level) {
127 SCREEN_DBG(screen, DBG_TEX, "%s: level (%u) > last_level (%u)\n",
128 __FUNCTION__, level, tex->b.b.last_level);
129 return 0;
130 }
131
132 width = u_minify(tex->tex.width0, level);
133
134 if (util_format_is_plain(tex->b.b.format)) {
135 tile_width = r300_get_pixel_alignment(tex->b.b.format,
136 tex->b.b.nr_samples,
137 tex->tex.microtile,
138 tex->tex.macrotile[level],
139 DIM_WIDTH, is_rs690);
140 width = align(width, tile_width);
141
142 stride = util_format_get_stride(tex->b.b.format, width);
143 /* The alignment to 32 bytes is sort of implied by the layout... */
144 return stride;
145 } else {
146 return align(util_format_get_stride(tex->b.b.format, width), is_rs690 ? 64 : 32);
147 }
148 }
149
150 static unsigned r300_texture_get_nblocksy(struct r300_resource *tex,
151 unsigned level,
152 boolean *out_aligned_for_cbzb)
153 {
154 unsigned height, tile_height;
155
156 height = u_minify(tex->tex.height0, level);
157
158 /* Mipmapped and 3D textures must have their height aligned to POT. */
159 if ((tex->b.b.target != PIPE_TEXTURE_1D &&
160 tex->b.b.target != PIPE_TEXTURE_2D &&
161 tex->b.b.target != PIPE_TEXTURE_RECT) ||
162 tex->b.b.last_level != 0) {
163 height = util_next_power_of_two(height);
164 }
165
166 if (util_format_is_plain(tex->b.b.format)) {
167 tile_height = r300_get_pixel_alignment(tex->b.b.format,
168 tex->b.b.nr_samples,
169 tex->tex.microtile,
170 tex->tex.macrotile[level],
171 DIM_HEIGHT, 0);
172 height = align(height, tile_height);
173
174 /* See if the CBZB clear can be used on the buffer,
175 * taking the texture size into account. */
176 if (out_aligned_for_cbzb) {
177 if (tex->tex.macrotile[level]) {
178 /* When clearing, the layer (width*height) is horizontally split
179 * into two, and the upper and lower halves are cleared by the CB
180 * and ZB units, respectively. Therefore, the number of macrotiles
181 * in the Y direction must be even. */
182
183 /* Align the height so that there is an even number of macrotiles.
184 * Do so for 3 or more macrotiles in the Y direction. */
185 if (level == 0 && tex->b.b.last_level == 0 &&
186 (tex->b.b.target == PIPE_TEXTURE_1D ||
187 tex->b.b.target == PIPE_TEXTURE_2D ||
188 tex->b.b.target == PIPE_TEXTURE_RECT) &&
189 height >= tile_height * 3) {
190 height = align(height, tile_height * 2);
191 }
192
193 *out_aligned_for_cbzb = height % (tile_height * 2) == 0;
194 } else {
195 *out_aligned_for_cbzb = FALSE;
196 }
197 }
198 }
199
200 return util_format_get_nblocksy(tex->b.b.format, height);
201 }
202
203 /* Get a width in pixels from a stride in bytes. */
204 unsigned r300_stride_to_width(enum pipe_format format,
205 unsigned stride_in_bytes)
206 {
207 return (stride_in_bytes / util_format_get_blocksize(format)) *
208 util_format_get_blockwidth(format);
209 }
210
211 static void r300_setup_miptree(struct r300_screen *screen,
212 struct r300_resource *tex,
213 boolean align_for_cbzb)
214 {
215 struct pipe_resource *base = &tex->b.b;
216 unsigned stride, size, layer_size, nblocksy, i;
217 boolean rv350_mode = screen->caps.family >= CHIP_R350;
218 boolean aligned_for_cbzb;
219
220 tex->tex.size_in_bytes = 0;
221
222 SCREEN_DBG(screen, DBG_TEXALLOC,
223 "r300: Making miptree for texture, format %s\n",
224 util_format_short_name(base->format));
225
226 for (i = 0; i <= base->last_level; i++) {
227 /* Let's see if this miplevel can be macrotiled. */
228 tex->tex.macrotile[i] =
229 (tex->tex.macrotile[0] == RADEON_LAYOUT_TILED &&
230 r300_texture_macro_switch(tex, i, rv350_mode, DIM_WIDTH) &&
231 r300_texture_macro_switch(tex, i, rv350_mode, DIM_HEIGHT)) ?
232 RADEON_LAYOUT_TILED : RADEON_LAYOUT_LINEAR;
233
234 stride = r300_texture_get_stride(screen, tex, i);
235
236 /* Compute the number of blocks in Y, see if the CBZB clear can be
237 * used on the texture. */
238 aligned_for_cbzb = FALSE;
239 if (align_for_cbzb && tex->tex.cbzb_allowed[i])
240 nblocksy = r300_texture_get_nblocksy(tex, i, &aligned_for_cbzb);
241 else
242 nblocksy = r300_texture_get_nblocksy(tex, i, NULL);
243
244 layer_size = stride * nblocksy;
245
246 if (base->nr_samples > 1) {
247 layer_size *= base->nr_samples;
248 }
249
250 if (base->target == PIPE_TEXTURE_CUBE)
251 size = layer_size * 6;
252 else
253 size = layer_size * u_minify(tex->tex.depth0, i);
254
255 tex->tex.offset_in_bytes[i] = tex->tex.size_in_bytes;
256 tex->tex.size_in_bytes = tex->tex.offset_in_bytes[i] + size;
257 tex->tex.layer_size_in_bytes[i] = layer_size;
258 tex->tex.stride_in_bytes[i] = stride;
259 tex->tex.cbzb_allowed[i] = tex->tex.cbzb_allowed[i] && aligned_for_cbzb;
260
261 SCREEN_DBG(screen, DBG_TEXALLOC, "r300: Texture miptree: Level %d "
262 "(%dx%dx%d px, pitch %d bytes) %d bytes total, macrotiled %s\n",
263 i, u_minify(tex->tex.width0, i), u_minify(tex->tex.height0, i),
264 u_minify(tex->tex.depth0, i), stride, tex->tex.size_in_bytes,
265 tex->tex.macrotile[i] ? "TRUE" : "FALSE");
266 }
267 }
268
269 static void r300_setup_flags(struct r300_resource *tex)
270 {
271 tex->tex.uses_stride_addressing =
272 !util_is_power_of_two(tex->b.b.width0) ||
273 (tex->tex.stride_in_bytes_override &&
274 r300_stride_to_width(tex->b.b.format,
275 tex->tex.stride_in_bytes_override) != tex->b.b.width0);
276
277 tex->tex.is_npot =
278 tex->tex.uses_stride_addressing ||
279 !util_is_power_of_two(tex->b.b.height0) ||
280 !util_is_power_of_two(tex->b.b.depth0);
281 }
282
283 static void r300_setup_cbzb_flags(struct r300_screen *rscreen,
284 struct r300_resource *tex)
285 {
286 unsigned i, bpp;
287 boolean first_level_valid;
288
289 bpp = util_format_get_blocksizebits(tex->b.b.format);
290
291 /* 1) The texture must be point-sampled,
292 * 2) The depth must be 16 or 32 bits.
293 * 3) If the midpoint ZB offset is not aligned to 2048, it returns garbage
294 * with certain texture sizes. Macrotiling ensures the alignment. */
295 first_level_valid = tex->b.b.nr_samples <= 1 &&
296 (bpp == 16 || bpp == 32) &&
297 tex->tex.macrotile[0];
298
299 if (SCREEN_DBG_ON(rscreen, DBG_NO_CBZB))
300 first_level_valid = FALSE;
301
302 for (i = 0; i <= tex->b.b.last_level; i++)
303 tex->tex.cbzb_allowed[i] = first_level_valid && tex->tex.macrotile[i];
304 }
305
306 static unsigned r300_pixels_to_dwords(unsigned stride,
307 unsigned height,
308 unsigned xblock, unsigned yblock)
309 {
310 return (util_align_npot(stride, xblock) * align(height, yblock)) / (xblock * yblock);
311 }
312
313 static void r300_setup_hyperz_properties(struct r300_screen *screen,
314 struct r300_resource *tex)
315 {
316 /* The tile size of 1 DWORD in ZMASK RAM is:
317 *
318 * GPU Pipes 4x4 mode 8x8 mode
319 * ------------------------------------------
320 * R580 4P/1Z 32x32 64x64
321 * RV570 3P/1Z 48x16 96x32
322 * RV530 1P/2Z 32x16 64x32
323 * 1P/1Z 16x16 32x32
324 */
325 static unsigned zmask_blocks_x_per_dw[4] = {4, 8, 12, 8};
326 static unsigned zmask_blocks_y_per_dw[4] = {4, 4, 4, 8};
327
328 /* In HIZ RAM, one dword is always 8x8 pixels (each byte is 4x4 pixels),
329 * but the blocks have very weird ordering.
330 *
331 * With 2 pipes and an image of size 8xY, where Y >= 1,
332 * clearing 4 dwords clears blocks like this:
333 *
334 * 01012323
335 *
336 * where numbers correspond to dword indices. The blocks are interleaved
337 * in the X direction, so the alignment must be 4x1 blocks (32x8 pixels).
338 *
339 * With 4 pipes and an image of size 8xY, where Y >= 4,
340 * clearing 8 dwords clears blocks like this:
341 * 01012323
342 * 45456767
343 * 01012323
344 * 45456767
345 * where numbers correspond to dword indices. The blocks are interleaved
346 * in both directions, so the alignment must be 4x4 blocks (32x32 pixels)
347 */
348 static unsigned hiz_align_x[4] = {8, 32, 48, 32};
349 static unsigned hiz_align_y[4] = {8, 8, 8, 32};
350
351 if (util_format_is_depth_or_stencil(tex->b.b.format) &&
352 tex->tex.microtile) {
353 unsigned i, pipes;
354
355 if (screen->caps.family == CHIP_RV530) {
356 pipes = screen->info.r300_num_z_pipes;
357 } else {
358 pipes = screen->info.r300_num_gb_pipes;
359 }
360
361 for (i = 0; i <= tex->b.b.last_level; i++) {
362 unsigned zcomp_numdw, zcompsize, hiz_numdw, stride, height;
363
364 stride = r300_stride_to_width(tex->b.b.format,
365 tex->tex.stride_in_bytes[i]);
366 stride = align(stride, 16);
367 height = u_minify(tex->b.b.height0, i);
368
369 /* The 8x8 compression mode needs macrotiling. */
370 zcompsize = screen->caps.z_compress == R300_ZCOMP_8X8 &&
371 tex->tex.macrotile[i] &&
372 tex->b.b.nr_samples <= 1 ? 8 : 4;
373
374 /* Get the ZMASK buffer size in dwords. */
375 zcomp_numdw = r300_pixels_to_dwords(stride, height,
376 zmask_blocks_x_per_dw[pipes-1] * zcompsize,
377 zmask_blocks_y_per_dw[pipes-1] * zcompsize);
378
379 /* Check whether we have enough ZMASK memory. */
380 if (util_format_get_blocksizebits(tex->b.b.format) == 32 &&
381 zcomp_numdw <= screen->caps.zmask_ram * pipes) {
382 tex->tex.zmask_dwords[i] = zcomp_numdw;
383 tex->tex.zcomp8x8[i] = zcompsize == 8;
384
385 tex->tex.zmask_stride_in_pixels[i] =
386 util_align_npot(stride, zmask_blocks_x_per_dw[pipes-1] * zcompsize);
387 } else {
388 tex->tex.zmask_dwords[i] = 0;
389 tex->tex.zcomp8x8[i] = FALSE;
390 tex->tex.zmask_stride_in_pixels[i] = 0;
391 }
392
393 /* Now setup HIZ. */
394 stride = util_align_npot(stride, hiz_align_x[pipes-1]);
395 height = align(height, hiz_align_y[pipes-1]);
396
397 /* Get the HIZ buffer size in dwords. */
398 hiz_numdw = (stride * height) / (8*8 * pipes);
399
400 /* Check whether we have enough HIZ memory. */
401 if (hiz_numdw <= screen->caps.hiz_ram * pipes) {
402 tex->tex.hiz_dwords[i] = hiz_numdw;
403 tex->tex.hiz_stride_in_pixels[i] = stride;
404 } else {
405 tex->tex.hiz_dwords[i] = 0;
406 tex->tex.hiz_stride_in_pixels[i] = 0;
407 }
408 }
409 }
410 }
411
412 static void r300_setup_cmask_properties(struct r300_screen *screen,
413 struct r300_resource *tex)
414 {
415 static unsigned cmask_align_x[4] = {16, 32, 48, 32};
416 static unsigned cmask_align_y[4] = {16, 16, 16, 32};
417 unsigned pipes, stride, cmask_num_dw;
418
419 /* We need an AA colorbuffer, no mipmaps. */
420 if (tex->b.b.nr_samples <= 1 ||
421 tex->b.b.last_level > 0 ||
422 util_format_is_depth_or_stencil(tex->b.b.format)) {
423 return;
424 }
425
426 if (tex->b.b.format == PIPE_FORMAT_R16G16B16A16_FLOAT) {
427 return;
428 }
429
430 if (SCREEN_DBG_ON(screen, DBG_NO_CMASK)) {
431 return;
432 }
433
434 /* CMASK is part of raster pipes. The number of Z pipes doesn't matter. */
435 pipes = screen->info.r300_num_gb_pipes;
436
437 stride = r300_stride_to_width(tex->b.b.format,
438 tex->tex.stride_in_bytes[0]);
439 stride = align(stride, 16);
440
441 /* Get the CMASK size in dwords. */
442 cmask_num_dw = r300_pixels_to_dwords(stride, tex->b.b.height0,
443 cmask_align_x[pipes-1],
444 cmask_align_y[pipes-1]);
445
446 /* Check the CMASK size against the CMASK memory limit. */
447 if (cmask_num_dw <= PIPE_CMASK_SIZE * pipes) {
448 tex->tex.cmask_dwords = cmask_num_dw;
449 tex->tex.cmask_stride_in_pixels =
450 util_align_npot(stride, cmask_align_x[pipes-1]);
451 }
452 }
453
454 static void r300_setup_tiling(struct r300_screen *screen,
455 struct r300_resource *tex)
456 {
457 enum pipe_format format = tex->b.b.format;
458 boolean rv350_mode = screen->caps.family >= CHIP_R350;
459 boolean is_zb = util_format_is_depth_or_stencil(format);
460 boolean dbg_no_tiling = SCREEN_DBG_ON(screen, DBG_NO_TILING);
461 boolean force_microtiling =
462 (tex->b.b.flags & R300_RESOURCE_FORCE_MICROTILING) != 0;
463
464 if (tex->b.b.nr_samples > 1) {
465 tex->tex.microtile = RADEON_LAYOUT_TILED;
466 tex->tex.macrotile[0] = RADEON_LAYOUT_TILED;
467 return;
468 }
469
470 tex->tex.microtile = RADEON_LAYOUT_LINEAR;
471 tex->tex.macrotile[0] = RADEON_LAYOUT_LINEAR;
472
473 if (!util_format_is_plain(format)) {
474 return;
475 }
476
477 /* If height == 1, disable microtiling except for zbuffer. */
478 if (!force_microtiling && !is_zb &&
479 (tex->b.b.height0 == 1 || dbg_no_tiling)) {
480 return;
481 }
482
483 /* Set microtiling. */
484 switch (util_format_get_blocksize(format)) {
485 case 1:
486 case 4:
487 case 8:
488 tex->tex.microtile = RADEON_LAYOUT_TILED;
489 break;
490
491 case 2:
492 tex->tex.microtile = RADEON_LAYOUT_SQUARETILED;
493 break;
494 }
495
496 if (dbg_no_tiling) {
497 return;
498 }
499
500 /* Set macrotiling. */
501 if (r300_texture_macro_switch(tex, 0, rv350_mode, DIM_WIDTH) &&
502 r300_texture_macro_switch(tex, 0, rv350_mode, DIM_HEIGHT)) {
503 tex->tex.macrotile[0] = RADEON_LAYOUT_TILED;
504 }
505 }
506
507 static void r300_tex_print_info(struct r300_resource *tex,
508 const char *func)
509 {
510 fprintf(stderr,
511 "r300: %s: Macro: %s, Micro: %s, Pitch: %i, Dim: %ix%ix%i, "
512 "LastLevel: %i, Size: %i, Format: %s, Samples: %i\n",
513 func,
514 tex->tex.macrotile[0] ? "YES" : " NO",
515 tex->tex.microtile ? "YES" : " NO",
516 r300_stride_to_width(tex->b.b.format, tex->tex.stride_in_bytes[0]),
517 tex->b.b.width0, tex->b.b.height0, tex->b.b.depth0,
518 tex->b.b.last_level, tex->tex.size_in_bytes,
519 util_format_short_name(tex->b.b.format),
520 tex->b.b.nr_samples);
521 }
522
523 void r300_texture_desc_init(struct r300_screen *rscreen,
524 struct r300_resource *tex,
525 const struct pipe_resource *base)
526 {
527 tex->b.b.target = base->target;
528 tex->b.b.format = base->format;
529 tex->b.b.width0 = base->width0;
530 tex->b.b.height0 = base->height0;
531 tex->b.b.depth0 = base->depth0;
532 tex->b.b.array_size = base->array_size;
533 tex->b.b.last_level = base->last_level;
534 tex->b.b.nr_samples = base->nr_samples;
535 tex->tex.width0 = base->width0;
536 tex->tex.height0 = base->height0;
537 tex->tex.depth0 = base->depth0;
538
539 r300_setup_flags(tex);
540
541 /* Align a 3D NPOT texture to POT. */
542 if (base->target == PIPE_TEXTURE_3D && tex->tex.is_npot) {
543 tex->tex.width0 = util_next_power_of_two(tex->tex.width0);
544 tex->tex.height0 = util_next_power_of_two(tex->tex.height0);
545 tex->tex.depth0 = util_next_power_of_two(tex->tex.depth0);
546 }
547
548 /* Setup tiling. */
549 if (tex->tex.microtile == RADEON_LAYOUT_UNKNOWN) {
550 r300_setup_tiling(rscreen, tex);
551 }
552
553 r300_setup_cbzb_flags(rscreen, tex);
554
555 /* Setup the miptree description. */
556 r300_setup_miptree(rscreen, tex, TRUE);
557 /* If the required buffer size is larger than the given max size,
558 * try again without the alignment for the CBZB clear. */
559 if (tex->buf && tex->tex.size_in_bytes > tex->buf->size) {
560 r300_setup_miptree(rscreen, tex, FALSE);
561
562 /* Make sure the buffer we got is large enough. */
563 if (tex->tex.size_in_bytes > tex->buf->size) {
564 fprintf(stderr,
565 "r300: I got a pre-allocated buffer to use it as a texture "
566 "storage, but the buffer is too small. I'll use the buffer "
567 "anyway, because I can't crash here, but it's dangerous. "
568 "This can be a DDX bug. Got: %iB, Need: %iB, Info:\n",
569 tex->buf->size, tex->tex.size_in_bytes);
570 r300_tex_print_info(tex, "texture_desc_init");
571 /* Ooops, what now. Apps will break if we fail this,
572 * so just pretend everything's okay. */
573 }
574 }
575
576 r300_setup_hyperz_properties(rscreen, tex);
577 r300_setup_cmask_properties(rscreen, tex);
578
579 if (SCREEN_DBG_ON(rscreen, DBG_TEX))
580 r300_tex_print_info(tex, "texture_desc_init");
581 }
582
583 unsigned r300_texture_get_offset(struct r300_resource *tex,
584 unsigned level, unsigned layer)
585 {
586 unsigned offset = tex->tex.offset_in_bytes[level];
587
588 switch (tex->b.b.target) {
589 case PIPE_TEXTURE_3D:
590 case PIPE_TEXTURE_CUBE:
591 return offset + layer * tex->tex.layer_size_in_bytes[level];
592
593 default:
594 assert(layer == 0);
595 return offset;
596 }
597 }