2007-11-07 10:04:59 -08:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright 2006 Tungsten Graphics, Inc., Cedar Park, Texas.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
* of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
|
|
|
|
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
2011-10-31 17:07:34 -07:00
|
|
|
#include "main/enums.h"
|
2008-09-18 15:17:05 -06:00
|
|
|
#include "main/imports.h"
|
2009-01-22 15:43:40 -07:00
|
|
|
#include "main/macros.h"
|
2011-01-09 01:25:54 -08:00
|
|
|
#include "main/mfeatures.h"
|
2008-09-18 15:17:05 -06:00
|
|
|
#include "main/mtypes.h"
|
|
|
|
#include "main/fbobject.h"
|
|
|
|
#include "main/framebuffer.h"
|
|
|
|
#include "main/renderbuffer.h"
|
|
|
|
#include "main/context.h"
|
2011-02-05 10:21:11 +00:00
|
|
|
#include "main/teximage.h"
|
intel: Replace intel_texture_image::stencil_irb with intel_mipmap_tree::stencil_mt [v3]
For depthstencil textures using separate stencil, we embedded a stencil
buffer in intel_texture_image. The intention was that the embedded stencil
buffer would be the golden copy of the texture's stencil bits. When
necessary, we scattered/gathered the stencil bits between the texture
miptree and the embedded stencil buffer.
This approach had a serious deficiency for mipmapped or multi-layer
textures. Any given moment the embedded stencil buffer was consistent with
exactly one miptree slice, the most recent one to be scattered. This
permitted tests of type A to pass, but broke tests of type B.
Test A:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Read and test stencil data at (level=x1, layer=y1).
4. Upload data into (level=x2,layer=y2).
5. Read and test stencil data at (level=x2, layer=y2).
Test B:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Upload data into (level=x2,layer=y2).
4. Read and test stencil data at (level=x1, layer=y1).
5. Read and test stencil data at (level=x2, layer=y2).
v2:
Only allocate stencil miptree if intel->must_use_separate_stencil,
because we don't make the conversion from must_use_separate_stencil to
has_separate_stencil until commit
intel: Use separate stencil whenever possible
v3:
Don't call ChooseNewTexture in intel_renderbuffer_wrap_miptree() in
order to determine the renderbuffer format. Instead, pass the format as
a param to that function.
CC: Eric Anholt <eric@anholt.net>
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
2011-11-15 22:17:34 -08:00
|
|
|
#include "main/image.h"
|
|
|
|
|
2011-06-13 16:07:32 -06:00
|
|
|
#include "swrast/swrast.h"
|
2009-08-10 13:43:00 -06:00
|
|
|
#include "drivers/common/meta.h"
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
#include "intel_context.h"
|
2009-12-09 11:36:45 -08:00
|
|
|
#include "intel_batchbuffer.h"
|
2007-11-07 10:04:59 -08:00
|
|
|
#include "intel_buffers.h"
|
2011-10-19 10:31:40 -07:00
|
|
|
#include "intel_blit.h"
|
2007-11-07 10:04:59 -08:00
|
|
|
#include "intel_fbo.h"
|
|
|
|
#include "intel_mipmap_tree.h"
|
|
|
|
#include "intel_regions.h"
|
2010-12-09 17:08:31 -08:00
|
|
|
#include "intel_tex.h"
|
|
|
|
#include "intel_span.h"
|
2011-01-10 15:45:28 -08:00
|
|
|
#ifndef I915
|
|
|
|
#include "brw_context.h"
|
|
|
|
#endif
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
#define FILE_DEBUG_FLAG DEBUG_FBO
|
|
|
|
|
2011-12-07 15:38:08 -08:00
|
|
|
static struct gl_renderbuffer *
|
|
|
|
intel_new_renderbuffer(struct gl_context * ctx, GLuint name);
|
|
|
|
|
|
|
|
static bool
|
|
|
|
intel_renderbuffer_update_wrapper(struct intel_context *intel,
|
|
|
|
struct intel_renderbuffer *irb,
|
|
|
|
struct intel_mipmap_tree *mt,
|
|
|
|
uint32_t level,
|
|
|
|
uint32_t layer,
|
|
|
|
gl_format format,
|
|
|
|
GLenum internal_format);
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2011-11-13 23:06:17 -08:00
|
|
|
bool
|
|
|
|
intel_framebuffer_has_hiz(struct gl_framebuffer *fb)
|
|
|
|
{
|
|
|
|
struct intel_renderbuffer *rb = NULL;
|
|
|
|
if (fb)
|
|
|
|
rb = intel_get_renderbuffer(fb, BUFFER_DEPTH);
|
2011-11-16 23:14:39 -08:00
|
|
|
return rb && rb->mt && rb->mt->hiz_mt;
|
2011-11-13 23:06:17 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
struct intel_region*
|
|
|
|
intel_get_rb_region(struct gl_framebuffer *fb, GLuint attIndex)
|
|
|
|
{
|
|
|
|
struct intel_renderbuffer *irb = intel_get_renderbuffer(fb, attIndex);
|
2011-12-07 15:02:02 -08:00
|
|
|
if (irb && irb->mt) {
|
|
|
|
if (attIndex == BUFFER_STENCIL && irb->mt->stencil_mt)
|
|
|
|
return irb->mt->stencil_mt->region;
|
|
|
|
else
|
|
|
|
return irb->mt->region;
|
|
|
|
} else
|
2011-11-13 23:06:17 -08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-11-07 10:04:59 -08:00
|
|
|
/**
|
|
|
|
* Create a new framebuffer object.
|
|
|
|
*/
|
|
|
|
static struct gl_framebuffer *
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_new_framebuffer(struct gl_context * ctx, GLuint name)
|
2007-11-07 10:04:59 -08:00
|
|
|
{
|
|
|
|
/* Only drawable state in intel_framebuffer at this time, just use Mesa's
|
|
|
|
* class
|
|
|
|
*/
|
|
|
|
return _mesa_new_framebuffer(ctx, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-29 14:57:31 -07:00
|
|
|
/** Called by gl_renderbuffer::Delete() */
|
2007-11-07 10:04:59 -08:00
|
|
|
static void
|
|
|
|
intel_delete_renderbuffer(struct gl_renderbuffer *rb)
|
|
|
|
{
|
|
|
|
struct intel_renderbuffer *irb = intel_renderbuffer(rb);
|
|
|
|
|
|
|
|
ASSERT(irb);
|
|
|
|
|
2011-11-16 14:04:25 -08:00
|
|
|
intel_miptree_release(&irb->mt);
|
2011-06-29 11:37:35 -07:00
|
|
|
|
2010-02-19 11:58:49 -05:00
|
|
|
free(irb);
|
2007-11-07 10:04:59 -08:00
|
|
|
}
|
|
|
|
|
2011-11-08 18:17:33 -08:00
|
|
|
/**
|
|
|
|
* \see dd_function_table::MapRenderbuffer
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
intel_map_renderbuffer(struct gl_context *ctx,
|
|
|
|
struct gl_renderbuffer *rb,
|
|
|
|
GLuint x, GLuint y, GLuint w, GLuint h,
|
|
|
|
GLbitfield mode,
|
|
|
|
GLubyte **out_map,
|
|
|
|
GLint *out_stride)
|
|
|
|
{
|
|
|
|
struct intel_context *intel = intel_context(ctx);
|
|
|
|
struct intel_renderbuffer *irb = intel_renderbuffer(rb);
|
2011-11-30 08:31:53 -08:00
|
|
|
void *map;
|
|
|
|
int stride;
|
2011-11-08 18:17:33 -08:00
|
|
|
|
2012-01-16 12:10:46 -07:00
|
|
|
if (!irb && rb->Buffer) {
|
2012-01-07 15:05:35 -07:00
|
|
|
/* this is a malloc'd renderbuffer (accum buffer) */
|
|
|
|
GLint bpp = _mesa_get_format_bytes(rb->Format);
|
2012-01-16 11:48:18 -07:00
|
|
|
GLint rowStride = rb->RowStrideBytes;
|
2012-01-16 12:10:46 -07:00
|
|
|
*out_map = (GLubyte *) rb->Buffer + y * rowStride + x * bpp;
|
2012-01-07 15:05:35 -07:00
|
|
|
*out_stride = rowStride;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-08 18:17:33 -08:00
|
|
|
/* We sometimes get called with this by our intel_span.c usage. */
|
2011-12-07 14:50:02 -08:00
|
|
|
if (!irb->mt) {
|
2011-11-08 18:17:33 -08:00
|
|
|
*out_map = NULL;
|
|
|
|
*out_stride = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-30 08:31:53 -08:00
|
|
|
/* For a window-system renderbuffer, we need to flip the mapping we receive
|
|
|
|
* upside-down. So we need to ask for a rectangle on flipped vertically, and
|
|
|
|
* we then return a pointer to the bottom of it with a negative stride.
|
|
|
|
*/
|
|
|
|
if (rb->Name == 0) {
|
|
|
|
y = rb->Height - y - h;
|
|
|
|
}
|
2011-11-28 16:08:46 -08:00
|
|
|
|
2011-11-30 08:31:53 -08:00
|
|
|
intel_miptree_map(intel, irb->mt, irb->mt_level, irb->mt_layer,
|
|
|
|
x, y, w, h, mode, &map, &stride);
|
2011-11-28 16:08:46 -08:00
|
|
|
|
2011-11-30 08:31:53 -08:00
|
|
|
if (rb->Name == 0) {
|
|
|
|
map += (h - 1) * stride;
|
|
|
|
stride = -stride;
|
|
|
|
}
|
2011-11-28 16:08:46 -08:00
|
|
|
|
2011-11-30 08:31:53 -08:00
|
|
|
DBG("%s: rb %d (%s) mt mapped: (%d, %d) (%dx%d) -> %p/%d\n",
|
|
|
|
__FUNCTION__, rb->Name, _mesa_get_format_name(rb->Format),
|
2011-12-13 12:03:37 -08:00
|
|
|
x, y, w, h, map, stride);
|
2011-11-28 16:08:46 -08:00
|
|
|
|
2011-11-30 08:31:53 -08:00
|
|
|
*out_map = map;
|
|
|
|
*out_stride = stride;
|
2011-11-08 18:17:33 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \see dd_function_table::UnmapRenderbuffer
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
intel_unmap_renderbuffer(struct gl_context *ctx,
|
|
|
|
struct gl_renderbuffer *rb)
|
|
|
|
{
|
2011-11-28 16:08:46 -08:00
|
|
|
struct intel_context *intel = intel_context(ctx);
|
2011-11-08 18:17:33 -08:00
|
|
|
struct intel_renderbuffer *irb = intel_renderbuffer(rb);
|
|
|
|
|
|
|
|
DBG("%s: rb %d (%s)\n", __FUNCTION__,
|
|
|
|
rb->Name, _mesa_get_format_name(rb->Format));
|
|
|
|
|
2012-01-16 12:10:46 -07:00
|
|
|
if (!irb && rb->Buffer) {
|
2012-01-07 15:05:35 -07:00
|
|
|
/* this is a malloc'd renderbuffer (accum buffer) */
|
|
|
|
/* nothing to do */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-30 08:31:53 -08:00
|
|
|
intel_miptree_unmap(intel, irb->mt, irb->mt_level, irb->mt_layer);
|
2011-10-11 14:22:45 -07:00
|
|
|
}
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called via glRenderbufferStorageEXT() to set the format and allocate
|
|
|
|
* storage for a user-created renderbuffer.
|
|
|
|
*/
|
2011-06-22 10:26:26 -07:00
|
|
|
GLboolean
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_alloc_renderbuffer_storage(struct gl_context * ctx, struct gl_renderbuffer *rb,
|
2007-11-07 10:04:59 -08:00
|
|
|
GLenum internalFormat,
|
|
|
|
GLuint width, GLuint height)
|
|
|
|
{
|
|
|
|
struct intel_context *intel = intel_context(ctx);
|
|
|
|
struct intel_renderbuffer *irb = intel_renderbuffer(rb);
|
|
|
|
|
|
|
|
ASSERT(rb->Name != 0);
|
|
|
|
|
|
|
|
switch (internalFormat) {
|
2010-12-09 17:15:26 -08:00
|
|
|
default:
|
|
|
|
/* Use the same format-choice logic as for textures.
|
|
|
|
* Renderbuffers aren't any different from textures for us,
|
|
|
|
* except they're less useful because you can't texture with
|
|
|
|
* them.
|
|
|
|
*/
|
2011-01-04 13:44:34 -08:00
|
|
|
rb->Format = intel->ctx.Driver.ChooseTextureFormat(ctx, internalFormat,
|
|
|
|
GL_NONE, GL_NONE);
|
2010-08-25 06:14:42 -07:00
|
|
|
break;
|
2007-11-07 10:04:59 -08:00
|
|
|
case GL_STENCIL_INDEX:
|
|
|
|
case GL_STENCIL_INDEX1_EXT:
|
|
|
|
case GL_STENCIL_INDEX4_EXT:
|
|
|
|
case GL_STENCIL_INDEX8_EXT:
|
|
|
|
case GL_STENCIL_INDEX16_EXT:
|
2010-12-09 17:15:26 -08:00
|
|
|
/* These aren't actual texture formats, so force them here. */
|
2011-05-23 13:47:35 -07:00
|
|
|
if (intel->has_separate_stencil) {
|
|
|
|
rb->Format = MESA_FORMAT_S8;
|
|
|
|
} else {
|
|
|
|
assert(!intel->must_use_separate_stencil);
|
|
|
|
rb->Format = MESA_FORMAT_S8_Z24;
|
|
|
|
}
|
2007-11-07 10:04:59 -08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-06-17 12:12:35 -07:00
|
|
|
rb->Width = width;
|
|
|
|
rb->Height = height;
|
2009-10-08 20:27:27 -06:00
|
|
|
rb->_BaseFormat = _mesa_base_fbo_format(ctx, internalFormat);
|
|
|
|
|
2011-11-16 14:04:25 -08:00
|
|
|
intel_miptree_release(&irb->mt);
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2011-10-31 17:07:34 -07:00
|
|
|
DBG("%s: %s: %s (%dx%d)\n", __FUNCTION__,
|
|
|
|
_mesa_lookup_enum_by_nr(internalFormat),
|
|
|
|
_mesa_get_format_name(rb->Format), width, height);
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2011-12-07 15:38:08 -08:00
|
|
|
irb->mt = intel_miptree_create_for_renderbuffer(intel, rb->Format,
|
|
|
|
width, height);
|
|
|
|
if (!irb->mt)
|
|
|
|
return false;
|
2011-06-17 12:12:35 -07:00
|
|
|
|
2011-12-07 15:38:08 -08:00
|
|
|
if (intel->vtbl.is_hiz_depth_format(intel, rb->Format)) {
|
|
|
|
bool ok = intel_miptree_alloc_hiz(intel, irb->mt);
|
2011-06-17 12:12:35 -07:00
|
|
|
if (!ok) {
|
2011-12-07 15:38:08 -08:00
|
|
|
intel_miptree_release(&irb->mt);
|
2011-06-17 12:12:35 -07:00
|
|
|
return false;
|
|
|
|
}
|
2011-12-07 15:38:08 -08:00
|
|
|
}
|
2011-06-17 12:12:35 -07:00
|
|
|
|
2011-10-07 12:26:50 -07:00
|
|
|
return true;
|
2007-11-07 10:04:59 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-11 19:04:02 -05:00
|
|
|
#if FEATURE_OES_EGL_image
|
|
|
|
static void
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_image_target_renderbuffer_storage(struct gl_context *ctx,
|
2010-02-11 19:04:02 -05:00
|
|
|
struct gl_renderbuffer *rb,
|
|
|
|
void *image_handle)
|
|
|
|
{
|
|
|
|
struct intel_context *intel = intel_context(ctx);
|
|
|
|
struct intel_renderbuffer *irb;
|
|
|
|
__DRIscreen *screen;
|
|
|
|
__DRIimage *image;
|
|
|
|
|
|
|
|
screen = intel->intelScreen->driScrnPriv;
|
2010-09-22 22:01:17 -04:00
|
|
|
image = screen->dri2.image->lookupEGLImage(screen, image_handle,
|
|
|
|
screen->loaderPrivate);
|
2010-02-11 19:04:02 -05:00
|
|
|
if (image == NULL)
|
|
|
|
return;
|
|
|
|
|
2011-08-21 21:36:40 +08:00
|
|
|
/* __DRIimage is opaque to the core so it has to be checked here */
|
|
|
|
switch (image->format) {
|
|
|
|
case MESA_FORMAT_RGBA8888_REV:
|
|
|
|
_mesa_error(&intel->ctx, GL_INVALID_OPERATION,
|
|
|
|
"glEGLImageTargetRenderbufferStorage(unsupported image format");
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-02-11 19:04:02 -05:00
|
|
|
irb = intel_renderbuffer(rb);
|
2011-11-16 14:04:25 -08:00
|
|
|
intel_miptree_release(&irb->mt);
|
|
|
|
irb->mt = intel_miptree_create_for_region(intel,
|
|
|
|
GL_TEXTURE_2D,
|
|
|
|
image->format,
|
|
|
|
image->region);
|
|
|
|
if (!irb->mt)
|
|
|
|
return;
|
2010-02-11 19:04:02 -05:00
|
|
|
|
2010-03-02 15:41:12 -05:00
|
|
|
rb->InternalFormat = image->internal_format;
|
2010-02-11 19:04:02 -05:00
|
|
|
rb->Width = image->region->width;
|
|
|
|
rb->Height = image->region->height;
|
|
|
|
rb->Format = image->format;
|
|
|
|
rb->_BaseFormat = _mesa_base_fbo_format(&intel->ctx,
|
|
|
|
image->internal_format);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-11-07 10:04:59 -08:00
|
|
|
/**
|
|
|
|
* Called for each hardware renderbuffer when a _window_ is resized.
|
|
|
|
* Just update fields.
|
|
|
|
* Not used for user-created renderbuffers!
|
|
|
|
*/
|
|
|
|
static GLboolean
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_alloc_window_storage(struct gl_context * ctx, struct gl_renderbuffer *rb,
|
2007-11-07 10:04:59 -08:00
|
|
|
GLenum internalFormat, GLuint width, GLuint height)
|
|
|
|
{
|
|
|
|
ASSERT(rb->Name == 0);
|
|
|
|
rb->Width = width;
|
|
|
|
rb->Height = height;
|
2009-10-08 20:27:27 -06:00
|
|
|
rb->InternalFormat = internalFormat;
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2011-10-07 12:26:50 -07:00
|
|
|
return true;
|
2007-11-07 10:04:59 -08:00
|
|
|
}
|
|
|
|
|
2009-01-29 14:57:31 -07:00
|
|
|
|
2007-11-07 10:04:59 -08:00
|
|
|
static void
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_resize_buffers(struct gl_context *ctx, struct gl_framebuffer *fb,
|
2007-11-07 10:04:59 -08:00
|
|
|
GLuint width, GLuint height)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
_mesa_resize_framebuffer(ctx, fb, width, height);
|
|
|
|
|
2011-10-07 12:26:50 -07:00
|
|
|
fb->Initialized = true; /* XXX remove someday */
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
if (fb->Name != 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-01-01 23:21:16 -05:00
|
|
|
|
2007-11-07 10:04:59 -08:00
|
|
|
/* Make sure all window system renderbuffers are up to date */
|
2010-01-01 23:21:16 -05:00
|
|
|
for (i = BUFFER_FRONT_LEFT; i <= BUFFER_BACK_RIGHT; i++) {
|
|
|
|
struct gl_renderbuffer *rb = fb->Attachment[i].Renderbuffer;
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
/* only resize if size is changing */
|
|
|
|
if (rb && (rb->Width != width || rb->Height != height)) {
|
|
|
|
rb->AllocStorage(ctx, rb, rb->InternalFormat, width, height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-29 14:57:31 -07:00
|
|
|
|
|
|
|
/** Dummy function for gl_renderbuffer::AllocStorage() */
|
2007-11-07 10:04:59 -08:00
|
|
|
static GLboolean
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_nop_alloc_storage(struct gl_context * ctx, struct gl_renderbuffer *rb,
|
2007-11-07 10:04:59 -08:00
|
|
|
GLenum internalFormat, GLuint width, GLuint height)
|
|
|
|
{
|
|
|
|
_mesa_problem(ctx, "intel_op_alloc_storage should never be called.");
|
2011-10-07 12:26:50 -07:00
|
|
|
return false;
|
2007-11-07 10:04:59 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new intel_renderbuffer which corresponds to an on-screen window,
|
|
|
|
* not a user-created renderbuffer.
|
|
|
|
*/
|
|
|
|
struct intel_renderbuffer *
|
2009-10-29 19:12:50 -06:00
|
|
|
intel_create_renderbuffer(gl_format format)
|
2007-11-07 10:04:59 -08:00
|
|
|
{
|
|
|
|
GET_CURRENT_CONTEXT(ctx);
|
|
|
|
|
|
|
|
struct intel_renderbuffer *irb;
|
|
|
|
|
|
|
|
irb = CALLOC_STRUCT(intel_renderbuffer);
|
|
|
|
if (!irb) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "creating renderbuffer");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-12-08 17:03:20 -08:00
|
|
|
_mesa_init_renderbuffer(&irb->Base, 0);
|
2007-11-07 10:04:59 -08:00
|
|
|
irb->Base.ClassID = INTEL_RB_CLASS;
|
2011-01-07 18:14:37 -08:00
|
|
|
irb->Base._BaseFormat = _mesa_get_format_base_format(format);
|
2009-10-29 19:12:50 -06:00
|
|
|
irb->Base.Format = format;
|
|
|
|
irb->Base.InternalFormat = irb->Base._BaseFormat;
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
/* intel-specific methods */
|
|
|
|
irb->Base.Delete = intel_delete_renderbuffer;
|
|
|
|
irb->Base.AllocStorage = intel_alloc_window_storage;
|
|
|
|
|
|
|
|
return irb;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new renderbuffer object.
|
|
|
|
* Typically called via glBindRenderbufferEXT().
|
|
|
|
*/
|
|
|
|
static struct gl_renderbuffer *
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_new_renderbuffer(struct gl_context * ctx, GLuint name)
|
2007-11-07 10:04:59 -08:00
|
|
|
{
|
|
|
|
/*struct intel_context *intel = intel_context(ctx); */
|
|
|
|
struct intel_renderbuffer *irb;
|
|
|
|
|
|
|
|
irb = CALLOC_STRUCT(intel_renderbuffer);
|
|
|
|
if (!irb) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "creating renderbuffer");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
_mesa_init_renderbuffer(&irb->Base, name);
|
|
|
|
irb->Base.ClassID = INTEL_RB_CLASS;
|
|
|
|
|
|
|
|
/* intel-specific methods */
|
|
|
|
irb->Base.Delete = intel_delete_renderbuffer;
|
|
|
|
irb->Base.AllocStorage = intel_alloc_renderbuffer_storage;
|
|
|
|
/* span routines set in alloc_storage function */
|
|
|
|
|
|
|
|
return &irb->Base;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called via glBindFramebufferEXT().
|
|
|
|
*/
|
|
|
|
static void
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_bind_framebuffer(struct gl_context * ctx, GLenum target,
|
2007-11-07 10:04:59 -08:00
|
|
|
struct gl_framebuffer *fb, struct gl_framebuffer *fbread)
|
|
|
|
{
|
|
|
|
if (target == GL_FRAMEBUFFER_EXT || target == GL_DRAW_FRAMEBUFFER_EXT) {
|
2011-08-26 09:54:40 -07:00
|
|
|
intel_draw_buffer(ctx);
|
2007-11-07 10:04:59 -08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* don't need to do anything if target == GL_READ_FRAMEBUFFER_EXT */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called via glFramebufferRenderbufferEXT().
|
|
|
|
*/
|
|
|
|
static void
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_framebuffer_renderbuffer(struct gl_context * ctx,
|
2007-11-07 10:04:59 -08:00
|
|
|
struct gl_framebuffer *fb,
|
|
|
|
GLenum attachment, struct gl_renderbuffer *rb)
|
|
|
|
{
|
|
|
|
DBG("Intel FramebufferRenderbuffer %u %u\n", fb->Name, rb ? rb->Name : 0);
|
|
|
|
|
|
|
|
_mesa_framebuffer_renderbuffer(ctx, fb, attachment, rb);
|
2011-08-26 09:54:40 -07:00
|
|
|
intel_draw_buffer(ctx);
|
2007-11-07 10:04:59 -08:00
|
|
|
}
|
|
|
|
|
intel: Replace intel_texture_image::stencil_irb with intel_mipmap_tree::stencil_mt [v3]
For depthstencil textures using separate stencil, we embedded a stencil
buffer in intel_texture_image. The intention was that the embedded stencil
buffer would be the golden copy of the texture's stencil bits. When
necessary, we scattered/gathered the stencil bits between the texture
miptree and the embedded stencil buffer.
This approach had a serious deficiency for mipmapped or multi-layer
textures. Any given moment the embedded stencil buffer was consistent with
exactly one miptree slice, the most recent one to be scattered. This
permitted tests of type A to pass, but broke tests of type B.
Test A:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Read and test stencil data at (level=x1, layer=y1).
4. Upload data into (level=x2,layer=y2).
5. Read and test stencil data at (level=x2, layer=y2).
Test B:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Upload data into (level=x2,layer=y2).
4. Read and test stencil data at (level=x1, layer=y1).
5. Read and test stencil data at (level=x2, layer=y2).
v2:
Only allocate stencil miptree if intel->must_use_separate_stencil,
because we don't make the conversion from must_use_separate_stencil to
has_separate_stencil until commit
intel: Use separate stencil whenever possible
v3:
Don't call ChooseNewTexture in intel_renderbuffer_wrap_miptree() in
order to determine the renderbuffer format. Instead, pass the format as
a param to that function.
CC: Eric Anholt <eric@anholt.net>
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
2011-11-15 22:17:34 -08:00
|
|
|
static struct intel_renderbuffer*
|
|
|
|
intel_renderbuffer_wrap_miptree(struct intel_context *intel,
|
|
|
|
struct intel_mipmap_tree *mt,
|
|
|
|
uint32_t level,
|
|
|
|
uint32_t layer,
|
|
|
|
gl_format format,
|
|
|
|
GLenum internal_format);
|
|
|
|
|
2011-11-15 22:11:33 -08:00
|
|
|
/**
|
intel: Replace intel_texture_image::stencil_irb with intel_mipmap_tree::stencil_mt [v3]
For depthstencil textures using separate stencil, we embedded a stencil
buffer in intel_texture_image. The intention was that the embedded stencil
buffer would be the golden copy of the texture's stencil bits. When
necessary, we scattered/gathered the stencil bits between the texture
miptree and the embedded stencil buffer.
This approach had a serious deficiency for mipmapped or multi-layer
textures. Any given moment the embedded stencil buffer was consistent with
exactly one miptree slice, the most recent one to be scattered. This
permitted tests of type A to pass, but broke tests of type B.
Test A:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Read and test stencil data at (level=x1, layer=y1).
4. Upload data into (level=x2,layer=y2).
5. Read and test stencil data at (level=x2, layer=y2).
Test B:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Upload data into (level=x2,layer=y2).
4. Read and test stencil data at (level=x1, layer=y1).
5. Read and test stencil data at (level=x2, layer=y2).
v2:
Only allocate stencil miptree if intel->must_use_separate_stencil,
because we don't make the conversion from must_use_separate_stencil to
has_separate_stencil until commit
intel: Use separate stencil whenever possible
v3:
Don't call ChooseNewTexture in intel_renderbuffer_wrap_miptree() in
order to determine the renderbuffer format. Instead, pass the format as
a param to that function.
CC: Eric Anholt <eric@anholt.net>
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
2011-11-15 22:17:34 -08:00
|
|
|
* \par Special case for separate stencil
|
|
|
|
*
|
|
|
|
* When wrapping a depthstencil texture that uses separate stencil, this
|
|
|
|
* function is recursively called twice: once to create \c
|
|
|
|
* irb->wrapped_depth and again to create \c irb->wrapped_stencil. On the
|
|
|
|
* call to create \c irb->wrapped_depth, the \c format and \c
|
|
|
|
* internal_format parameters do not match \c mt->format. In that case, \c
|
|
|
|
* mt->format is MESA_FORMAT_S8_Z24 and \c format is \c
|
|
|
|
* MESA_FORMAT_X8_Z24.
|
|
|
|
*
|
|
|
|
* @return true on success
|
2011-11-15 22:11:33 -08:00
|
|
|
*/
|
2011-10-07 12:26:50 -07:00
|
|
|
static bool
|
2011-11-15 22:11:33 -08:00
|
|
|
intel_renderbuffer_update_wrapper(struct intel_context *intel,
|
|
|
|
struct intel_renderbuffer *irb,
|
|
|
|
struct intel_mipmap_tree *mt,
|
|
|
|
uint32_t level,
|
|
|
|
uint32_t layer,
|
|
|
|
gl_format format,
|
intel: Replace intel_texture_image::stencil_irb with intel_mipmap_tree::stencil_mt [v3]
For depthstencil textures using separate stencil, we embedded a stencil
buffer in intel_texture_image. The intention was that the embedded stencil
buffer would be the golden copy of the texture's stencil bits. When
necessary, we scattered/gathered the stencil bits between the texture
miptree and the embedded stencil buffer.
This approach had a serious deficiency for mipmapped or multi-layer
textures. Any given moment the embedded stencil buffer was consistent with
exactly one miptree slice, the most recent one to be scattered. This
permitted tests of type A to pass, but broke tests of type B.
Test A:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Read and test stencil data at (level=x1, layer=y1).
4. Upload data into (level=x2,layer=y2).
5. Read and test stencil data at (level=x2, layer=y2).
Test B:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Upload data into (level=x2,layer=y2).
4. Read and test stencil data at (level=x1, layer=y1).
5. Read and test stencil data at (level=x2, layer=y2).
v2:
Only allocate stencil miptree if intel->must_use_separate_stencil,
because we don't make the conversion from must_use_separate_stencil to
has_separate_stencil until commit
intel: Use separate stencil whenever possible
v3:
Don't call ChooseNewTexture in intel_renderbuffer_wrap_miptree() in
order to determine the renderbuffer format. Instead, pass the format as
a param to that function.
CC: Eric Anholt <eric@anholt.net>
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
2011-11-15 22:17:34 -08:00
|
|
|
GLenum internal_format)
|
2007-11-07 10:04:59 -08:00
|
|
|
{
|
2011-11-15 22:11:33 -08:00
|
|
|
struct gl_renderbuffer *rb = &irb->Base;
|
|
|
|
|
|
|
|
rb->Format = format;
|
|
|
|
rb->InternalFormat = internal_format;
|
|
|
|
rb->_BaseFormat = _mesa_get_format_base_format(rb->Format);
|
|
|
|
rb->Width = mt->level[level].width;
|
|
|
|
rb->Height = mt->level[level].height;
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
irb->Base.Delete = intel_delete_renderbuffer;
|
|
|
|
irb->Base.AllocStorage = intel_nop_alloc_storage;
|
|
|
|
|
2011-11-15 22:11:33 -08:00
|
|
|
intel_miptree_check_level_layer(mt, level, layer);
|
|
|
|
irb->mt_level = level;
|
|
|
|
irb->mt_layer = layer;
|
2011-11-15 10:05:21 -08:00
|
|
|
|
2011-12-07 15:02:02 -08:00
|
|
|
intel_miptree_reference(&irb->mt, mt);
|
2011-11-15 22:51:35 -08:00
|
|
|
|
2011-12-08 08:33:28 -08:00
|
|
|
intel_renderbuffer_set_draw_offset(irb);
|
|
|
|
|
|
|
|
if (mt->hiz_mt == NULL &&
|
|
|
|
intel->vtbl.is_hiz_depth_format(intel, rb->Format)) {
|
|
|
|
intel_miptree_alloc_hiz(intel, mt);
|
|
|
|
if (!mt->hiz_mt)
|
|
|
|
return false;
|
2011-05-23 13:48:10 -07:00
|
|
|
}
|
2011-11-15 22:11:33 -08:00
|
|
|
|
2011-10-07 12:26:50 -07:00
|
|
|
return true;
|
2008-03-14 11:39:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-11-15 22:11:33 -08:00
|
|
|
* \brief Wrap a renderbuffer around a single slice of a miptree.
|
|
|
|
*
|
|
|
|
* Called by glFramebufferTexture*(). This just allocates a
|
|
|
|
* ``struct intel_renderbuffer`` then calls
|
|
|
|
* intel_renderbuffer_update_wrapper() to do the real work.
|
|
|
|
*
|
|
|
|
* \see intel_renderbuffer_update_wrapper()
|
2008-03-14 11:39:08 +08:00
|
|
|
*/
|
2011-11-15 22:11:33 -08:00
|
|
|
static struct intel_renderbuffer*
|
|
|
|
intel_renderbuffer_wrap_miptree(struct intel_context *intel,
|
|
|
|
struct intel_mipmap_tree *mt,
|
|
|
|
uint32_t level,
|
|
|
|
uint32_t layer,
|
|
|
|
gl_format format,
|
intel: Replace intel_texture_image::stencil_irb with intel_mipmap_tree::stencil_mt [v3]
For depthstencil textures using separate stencil, we embedded a stencil
buffer in intel_texture_image. The intention was that the embedded stencil
buffer would be the golden copy of the texture's stencil bits. When
necessary, we scattered/gathered the stencil bits between the texture
miptree and the embedded stencil buffer.
This approach had a serious deficiency for mipmapped or multi-layer
textures. Any given moment the embedded stencil buffer was consistent with
exactly one miptree slice, the most recent one to be scattered. This
permitted tests of type A to pass, but broke tests of type B.
Test A:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Read and test stencil data at (level=x1, layer=y1).
4. Upload data into (level=x2,layer=y2).
5. Read and test stencil data at (level=x2, layer=y2).
Test B:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Upload data into (level=x2,layer=y2).
4. Read and test stencil data at (level=x1, layer=y1).
5. Read and test stencil data at (level=x2, layer=y2).
v2:
Only allocate stencil miptree if intel->must_use_separate_stencil,
because we don't make the conversion from must_use_separate_stencil to
has_separate_stencil until commit
intel: Use separate stencil whenever possible
v3:
Don't call ChooseNewTexture in intel_renderbuffer_wrap_miptree() in
order to determine the renderbuffer format. Instead, pass the format as
a param to that function.
CC: Eric Anholt <eric@anholt.net>
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
2011-11-15 22:17:34 -08:00
|
|
|
GLenum internal_format)
|
2011-11-15 22:11:33 -08:00
|
|
|
|
2008-03-14 11:39:08 +08:00
|
|
|
{
|
2011-11-15 22:11:33 -08:00
|
|
|
struct gl_context *ctx = &intel->ctx;
|
2011-12-07 15:44:02 -08:00
|
|
|
struct gl_renderbuffer *rb;
|
2008-03-14 11:39:08 +08:00
|
|
|
struct intel_renderbuffer *irb;
|
|
|
|
|
2011-11-15 22:11:33 -08:00
|
|
|
intel_miptree_check_level_layer(mt, level, layer);
|
|
|
|
|
2011-12-07 15:44:02 -08:00
|
|
|
rb = intel_new_renderbuffer(ctx, ~0);
|
|
|
|
irb = intel_renderbuffer(rb);
|
|
|
|
if (!irb)
|
2008-03-14 11:39:08 +08:00
|
|
|
return NULL;
|
|
|
|
|
2011-11-15 22:11:33 -08:00
|
|
|
if (!intel_renderbuffer_update_wrapper(intel, irb,
|
|
|
|
mt, level, layer,
|
intel: Replace intel_texture_image::stencil_irb with intel_mipmap_tree::stencil_mt [v3]
For depthstencil textures using separate stencil, we embedded a stencil
buffer in intel_texture_image. The intention was that the embedded stencil
buffer would be the golden copy of the texture's stencil bits. When
necessary, we scattered/gathered the stencil bits between the texture
miptree and the embedded stencil buffer.
This approach had a serious deficiency for mipmapped or multi-layer
textures. Any given moment the embedded stencil buffer was consistent with
exactly one miptree slice, the most recent one to be scattered. This
permitted tests of type A to pass, but broke tests of type B.
Test A:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Read and test stencil data at (level=x1, layer=y1).
4. Upload data into (level=x2,layer=y2).
5. Read and test stencil data at (level=x2, layer=y2).
Test B:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Upload data into (level=x2,layer=y2).
4. Read and test stencil data at (level=x1, layer=y1).
5. Read and test stencil data at (level=x2, layer=y2).
v2:
Only allocate stencil miptree if intel->must_use_separate_stencil,
because we don't make the conversion from must_use_separate_stencil to
has_separate_stencil until commit
intel: Use separate stencil whenever possible
v3:
Don't call ChooseNewTexture in intel_renderbuffer_wrap_miptree() in
order to determine the renderbuffer format. Instead, pass the format as
a param to that function.
CC: Eric Anholt <eric@anholt.net>
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
2011-11-15 22:17:34 -08:00
|
|
|
format, internal_format)) {
|
2010-02-19 11:58:49 -05:00
|
|
|
free(irb);
|
2008-03-14 11:39:08 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-11-07 10:04:59 -08:00
|
|
|
return irb;
|
|
|
|
}
|
|
|
|
|
2011-06-22 10:26:26 -07:00
|
|
|
void
|
2011-11-15 10:22:14 -08:00
|
|
|
intel_renderbuffer_set_draw_offset(struct intel_renderbuffer *irb)
|
2011-01-10 15:45:28 -08:00
|
|
|
{
|
|
|
|
unsigned int dst_x, dst_y;
|
|
|
|
|
|
|
|
/* compute offset of the particular 2D image within the texture region */
|
2011-11-15 10:22:14 -08:00
|
|
|
intel_miptree_get_image_offset(irb->mt,
|
|
|
|
irb->mt_level,
|
|
|
|
0, /* face, which we ignore */
|
|
|
|
irb->mt_layer,
|
2011-01-10 15:45:28 -08:00
|
|
|
&dst_x, &dst_y);
|
|
|
|
|
2011-05-31 14:27:18 -07:00
|
|
|
irb->draw_x = dst_x;
|
|
|
|
irb->draw_y = dst_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Rendering to tiled buffers requires that the base address of the
|
|
|
|
* buffer be aligned to a page boundary. We generally render to
|
|
|
|
* textures by pointing the surface at the mipmap image level, which
|
|
|
|
* may not be aligned to a tile boundary.
|
|
|
|
*
|
|
|
|
* This function returns an appropriately-aligned base offset
|
|
|
|
* according to the tiling restrictions, plus any required x/y offset
|
|
|
|
* from there.
|
|
|
|
*/
|
|
|
|
uint32_t
|
|
|
|
intel_renderbuffer_tile_offsets(struct intel_renderbuffer *irb,
|
|
|
|
uint32_t *tile_x,
|
|
|
|
uint32_t *tile_y)
|
|
|
|
{
|
2011-11-16 14:04:25 -08:00
|
|
|
struct intel_region *region = irb->mt->region;
|
|
|
|
int cpp = region->cpp;
|
|
|
|
uint32_t pitch = region->pitch * cpp;
|
2011-05-31 14:27:18 -07:00
|
|
|
|
2011-11-16 14:04:25 -08:00
|
|
|
if (region->tiling == I915_TILING_NONE) {
|
2011-05-31 14:27:18 -07:00
|
|
|
*tile_x = 0;
|
|
|
|
*tile_y = 0;
|
|
|
|
return irb->draw_x * cpp + irb->draw_y * pitch;
|
2011-11-16 14:04:25 -08:00
|
|
|
} else if (region->tiling == I915_TILING_X) {
|
2011-05-31 14:27:18 -07:00
|
|
|
*tile_x = irb->draw_x % (512 / cpp);
|
|
|
|
*tile_y = irb->draw_y % 8;
|
|
|
|
return ((irb->draw_y / 8) * (8 * pitch) +
|
|
|
|
(irb->draw_x - *tile_x) / (512 / cpp) * 4096);
|
|
|
|
} else {
|
2011-11-16 14:04:25 -08:00
|
|
|
assert(region->tiling == I915_TILING_Y);
|
2011-05-31 14:27:18 -07:00
|
|
|
*tile_x = irb->draw_x % (128 / cpp);
|
|
|
|
*tile_y = irb->draw_y % 32;
|
|
|
|
return ((irb->draw_y / 32) * (32 * pitch) +
|
|
|
|
(irb->draw_x - *tile_x) / (128 / cpp) * 4096);
|
|
|
|
}
|
2011-01-10 15:45:28 -08:00
|
|
|
}
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2011-07-25 17:06:13 -07:00
|
|
|
#ifndef I915
|
|
|
|
static bool
|
|
|
|
need_tile_offset_workaround(struct brw_context *brw,
|
|
|
|
struct intel_renderbuffer *irb)
|
|
|
|
{
|
|
|
|
uint32_t tile_x, tile_y;
|
|
|
|
|
|
|
|
if (brw->has_surface_tile_offset)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
intel_renderbuffer_tile_offsets(irb, &tile_x, &tile_y);
|
|
|
|
|
|
|
|
return tile_x != 0 || tile_y != 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-11-07 10:04:59 -08:00
|
|
|
/**
|
|
|
|
* Called by glFramebufferTexture[123]DEXT() (and other places) to
|
|
|
|
* prepare for rendering into texture memory. This might be called
|
|
|
|
* many times to choose different texture levels, cube faces, etc
|
|
|
|
* before intel_finish_render_texture() is ever called.
|
|
|
|
*/
|
|
|
|
static void
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_render_texture(struct gl_context * ctx,
|
2007-11-07 10:04:59 -08:00
|
|
|
struct gl_framebuffer *fb,
|
|
|
|
struct gl_renderbuffer_attachment *att)
|
|
|
|
{
|
2011-11-15 22:11:33 -08:00
|
|
|
struct intel_context *intel = intel_context(ctx);
|
2011-05-31 15:07:56 -07:00
|
|
|
struct gl_texture_image *image = _mesa_get_attachment_teximage(att);
|
2007-11-07 10:04:59 -08:00
|
|
|
struct intel_renderbuffer *irb = intel_renderbuffer(att->Renderbuffer);
|
2011-05-31 15:07:56 -07:00
|
|
|
struct intel_texture_image *intel_image = intel_texture_image(image);
|
2011-11-15 22:11:33 -08:00
|
|
|
struct intel_mipmap_tree *mt = intel_image->mt;
|
2012-01-12 11:41:42 -07:00
|
|
|
int layer;
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
(void) fb;
|
|
|
|
|
2011-11-15 22:11:33 -08:00
|
|
|
if (att->CubeMapFace > 0) {
|
|
|
|
assert(att->Zoffset == 0);
|
|
|
|
layer = att->CubeMapFace;
|
|
|
|
} else {
|
|
|
|
layer = att->Zoffset;
|
|
|
|
}
|
|
|
|
|
2009-05-20 14:16:34 -07:00
|
|
|
if (!intel_image->mt) {
|
|
|
|
/* Fallback on drawing to a texture that doesn't have a miptree
|
|
|
|
* (has a border, width/height 0, etc.)
|
2008-12-06 15:47:23 -08:00
|
|
|
*/
|
2009-01-29 14:57:31 -07:00
|
|
|
_mesa_reference_renderbuffer(&att->Renderbuffer, NULL);
|
2011-06-13 13:44:35 -06:00
|
|
|
_swrast_render_texture(ctx, fb, att);
|
2009-01-29 14:57:31 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (!irb) {
|
2011-11-15 22:11:33 -08:00
|
|
|
irb = intel_renderbuffer_wrap_miptree(intel,
|
|
|
|
mt,
|
|
|
|
att->TextureLevel,
|
|
|
|
layer,
|
|
|
|
image->TexFormat,
|
intel: Replace intel_texture_image::stencil_irb with intel_mipmap_tree::stencil_mt [v3]
For depthstencil textures using separate stencil, we embedded a stencil
buffer in intel_texture_image. The intention was that the embedded stencil
buffer would be the golden copy of the texture's stencil bits. When
necessary, we scattered/gathered the stencil bits between the texture
miptree and the embedded stencil buffer.
This approach had a serious deficiency for mipmapped or multi-layer
textures. Any given moment the embedded stencil buffer was consistent with
exactly one miptree slice, the most recent one to be scattered. This
permitted tests of type A to pass, but broke tests of type B.
Test A:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Read and test stencil data at (level=x1, layer=y1).
4. Upload data into (level=x2,layer=y2).
5. Read and test stencil data at (level=x2, layer=y2).
Test B:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Upload data into (level=x2,layer=y2).
4. Read and test stencil data at (level=x1, layer=y1).
5. Read and test stencil data at (level=x2, layer=y2).
v2:
Only allocate stencil miptree if intel->must_use_separate_stencil,
because we don't make the conversion from must_use_separate_stencil to
has_separate_stencil until commit
intel: Use separate stencil whenever possible
v3:
Don't call ChooseNewTexture in intel_renderbuffer_wrap_miptree() in
order to determine the renderbuffer format. Instead, pass the format as
a param to that function.
CC: Eric Anholt <eric@anholt.net>
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
2011-11-15 22:17:34 -08:00
|
|
|
image->InternalFormat);
|
2011-11-15 22:11:33 -08:00
|
|
|
|
2007-11-07 10:04:59 -08:00
|
|
|
if (irb) {
|
|
|
|
/* bind the wrapper to the attachment point */
|
|
|
|
_mesa_reference_renderbuffer(&att->Renderbuffer, &irb->Base);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* fallback to software rendering */
|
2011-06-13 13:44:35 -06:00
|
|
|
_swrast_render_texture(ctx, fb, att);
|
2007-11-07 10:04:59 -08:00
|
|
|
return;
|
|
|
|
}
|
2009-01-29 14:57:31 -07:00
|
|
|
}
|
|
|
|
|
2011-11-15 22:11:33 -08:00
|
|
|
if (!intel_renderbuffer_update_wrapper(intel, irb,
|
|
|
|
mt, att->TextureLevel, layer,
|
|
|
|
image->TexFormat,
|
intel: Replace intel_texture_image::stencil_irb with intel_mipmap_tree::stencil_mt [v3]
For depthstencil textures using separate stencil, we embedded a stencil
buffer in intel_texture_image. The intention was that the embedded stencil
buffer would be the golden copy of the texture's stencil bits. When
necessary, we scattered/gathered the stencil bits between the texture
miptree and the embedded stencil buffer.
This approach had a serious deficiency for mipmapped or multi-layer
textures. Any given moment the embedded stencil buffer was consistent with
exactly one miptree slice, the most recent one to be scattered. This
permitted tests of type A to pass, but broke tests of type B.
Test A:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Read and test stencil data at (level=x1, layer=y1).
4. Upload data into (level=x2,layer=y2).
5. Read and test stencil data at (level=x2, layer=y2).
Test B:
1. Create a depthstencil texture.
2. Upload data into (level=x1,layer=y1).
3. Upload data into (level=x2,layer=y2).
4. Read and test stencil data at (level=x1, layer=y1).
5. Read and test stencil data at (level=x2, layer=y2).
v2:
Only allocate stencil miptree if intel->must_use_separate_stencil,
because we don't make the conversion from must_use_separate_stencil to
has_separate_stencil until commit
intel: Use separate stencil whenever possible
v3:
Don't call ChooseNewTexture in intel_renderbuffer_wrap_miptree() in
order to determine the renderbuffer format. Instead, pass the format as
a param to that function.
CC: Eric Anholt <eric@anholt.net>
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
2011-11-15 22:17:34 -08:00
|
|
|
image->InternalFormat)) {
|
2008-03-14 11:39:08 +08:00
|
|
|
_mesa_reference_renderbuffer(&att->Renderbuffer, NULL);
|
2011-06-13 13:44:35 -06:00
|
|
|
_swrast_render_texture(ctx, fb, att);
|
2008-03-14 11:39:08 +08:00
|
|
|
return;
|
2007-11-07 10:04:59 -08:00
|
|
|
}
|
|
|
|
|
2011-11-15 12:53:18 -08:00
|
|
|
DBG("Begin render %s texture tex=%u w=%d h=%d refcount=%d\n",
|
|
|
|
_mesa_get_format_name(image->TexFormat),
|
2011-05-31 15:07:56 -07:00
|
|
|
att->Texture->Name, image->Width, image->Height,
|
2007-11-07 10:04:59 -08:00
|
|
|
irb->Base.RefCount);
|
|
|
|
|
2011-10-07 12:26:50 -07:00
|
|
|
intel_image->used_as_render_target = true;
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2011-01-10 15:45:28 -08:00
|
|
|
#ifndef I915
|
2011-07-25 17:06:13 -07:00
|
|
|
if (need_tile_offset_workaround(brw_context(ctx), irb)) {
|
2011-01-10 15:45:28 -08:00
|
|
|
/* Original gen4 hardware couldn't draw to a non-tile-aligned
|
|
|
|
* destination in a miptree unless you actually setup your
|
|
|
|
* renderbuffer as a miptree and used the fragile
|
|
|
|
* lod/array_index/etc. controls to select the image. So,
|
|
|
|
* instead, we just make a new single-level miptree and render
|
|
|
|
* into that.
|
|
|
|
*/
|
2011-01-12 12:29:38 -08:00
|
|
|
struct intel_context *intel = intel_context(ctx);
|
2011-01-10 15:45:28 -08:00
|
|
|
struct intel_mipmap_tree *new_mt;
|
2011-09-29 11:30:18 -07:00
|
|
|
int width, height, depth;
|
|
|
|
|
|
|
|
intel_miptree_get_dimensions_for_image(image, &width, &height, &depth);
|
2011-01-10 15:45:28 -08:00
|
|
|
|
2011-05-31 15:07:56 -07:00
|
|
|
new_mt = intel_miptree_create(intel, image->TexObject->Target,
|
2011-09-17 14:50:48 -06:00
|
|
|
intel_image->base.Base.TexFormat,
|
|
|
|
intel_image->base.Base.Level,
|
|
|
|
intel_image->base.Base.Level,
|
2011-09-29 11:30:18 -07:00
|
|
|
width, height, depth,
|
2011-10-07 12:26:50 -07:00
|
|
|
true);
|
2011-01-10 15:45:28 -08:00
|
|
|
|
2011-09-28 16:07:56 -07:00
|
|
|
intel_miptree_copy_teximage(intel, intel_image, new_mt);
|
2011-11-15 10:22:14 -08:00
|
|
|
intel_renderbuffer_set_draw_offset(irb);
|
2011-01-10 15:45:28 -08:00
|
|
|
|
2011-11-16 14:04:25 -08:00
|
|
|
intel_miptree_reference(&irb->mt, intel_image->mt);
|
2011-09-28 16:07:56 -07:00
|
|
|
intel_miptree_release(&new_mt);
|
2011-01-10 15:45:28 -08:00
|
|
|
}
|
|
|
|
#endif
|
2007-11-07 10:04:59 -08:00
|
|
|
/* update drawing region, etc */
|
2011-08-26 09:54:40 -07:00
|
|
|
intel_draw_buffer(ctx);
|
2007-11-07 10:04:59 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called by Mesa when rendering to a texture is done.
|
|
|
|
*/
|
|
|
|
static void
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_finish_render_texture(struct gl_context * ctx,
|
2007-11-07 10:04:59 -08:00
|
|
|
struct gl_renderbuffer_attachment *att)
|
|
|
|
{
|
2009-12-09 11:36:45 -08:00
|
|
|
struct intel_context *intel = intel_context(ctx);
|
2009-11-04 14:54:09 -08:00
|
|
|
struct gl_texture_object *tex_obj = att->Texture;
|
|
|
|
struct gl_texture_image *image =
|
|
|
|
tex_obj->Image[att->CubeMapFace][att->TextureLevel];
|
|
|
|
struct intel_texture_image *intel_image = intel_texture_image(image);
|
2010-09-24 11:20:16 -07:00
|
|
|
|
2011-11-15 12:53:18 -08:00
|
|
|
DBG("Finish render %s texture tex=%u\n",
|
|
|
|
_mesa_get_format_name(image->TexFormat), att->Texture->Name);
|
2009-11-04 14:54:09 -08:00
|
|
|
|
|
|
|
/* Flag that this image may now be validated into the object's miptree. */
|
2010-12-21 11:55:11 +00:00
|
|
|
if (intel_image)
|
2011-10-07 12:26:50 -07:00
|
|
|
intel_image->used_as_render_target = false;
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2009-12-09 11:36:45 -08:00
|
|
|
/* Since we've (probably) rendered to the texture and will (likely) use
|
|
|
|
* it in the texture domain later on in this batchbuffer, flush the
|
|
|
|
* batch. Once again, we wish for a domain tracker in libdrm to cover
|
|
|
|
* usage inside of a batchbuffer like GEM does in the kernel.
|
|
|
|
*/
|
2011-02-10 20:25:51 +00:00
|
|
|
intel_batchbuffer_emit_mi_flush(intel);
|
2009-12-09 11:36:45 -08:00
|
|
|
}
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2009-01-20 15:30:22 -07:00
|
|
|
/**
|
|
|
|
* Do additional "completeness" testing of a framebuffer object.
|
|
|
|
*/
|
|
|
|
static void
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_validate_framebuffer(struct gl_context *ctx, struct gl_framebuffer *fb)
|
2009-01-20 15:30:22 -07:00
|
|
|
{
|
2011-01-07 15:45:33 -08:00
|
|
|
struct intel_context *intel = intel_context(ctx);
|
2009-01-22 15:32:38 -07:00
|
|
|
const struct intel_renderbuffer *depthRb =
|
|
|
|
intel_get_renderbuffer(fb, BUFFER_DEPTH);
|
|
|
|
const struct intel_renderbuffer *stencilRb =
|
|
|
|
intel_get_renderbuffer(fb, BUFFER_STENCIL);
|
2011-12-07 17:51:14 -08:00
|
|
|
struct intel_mipmap_tree *depth_mt = NULL, *stencil_mt = NULL;
|
2009-04-09 18:30:12 -07:00
|
|
|
int i;
|
2009-01-22 15:32:38 -07:00
|
|
|
|
2011-12-07 17:51:14 -08:00
|
|
|
if (depthRb)
|
|
|
|
depth_mt = depthRb->mt;
|
2011-12-07 15:02:02 -08:00
|
|
|
if (stencilRb) {
|
2011-12-07 17:51:14 -08:00
|
|
|
stencil_mt = stencilRb->mt;
|
2011-12-07 15:02:02 -08:00
|
|
|
if (stencil_mt->stencil_mt)
|
|
|
|
stencil_mt = stencil_mt->stencil_mt;
|
|
|
|
}
|
2011-12-07 17:51:14 -08:00
|
|
|
|
|
|
|
if (depth_mt && stencil_mt) {
|
|
|
|
if (depth_mt == stencil_mt) {
|
|
|
|
/* For true packed depth/stencil (not faked on prefers-separate-stencil
|
|
|
|
* hardware) we need to be sure they're the same level/layer, since
|
|
|
|
* we'll be emitting a single packet describing the packed setup.
|
|
|
|
*/
|
|
|
|
if (depthRb->mt_level != stencilRb->mt_level ||
|
|
|
|
depthRb->mt_layer != stencilRb->mt_layer) {
|
|
|
|
fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED_EXT;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!intel->has_separate_stencil)
|
|
|
|
fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED_EXT;
|
|
|
|
if (stencil_mt->format != MESA_FORMAT_S8)
|
|
|
|
fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED_EXT;
|
2012-01-19 13:08:48 -08:00
|
|
|
if (intel->gen < 7 && depth_mt->hiz_mt == NULL) {
|
|
|
|
/* Before Gen7, separate depth and stencil buffers can be used
|
|
|
|
* only if HiZ is enabled. From the Sandybridge PRM, Volume 2,
|
|
|
|
* Part 1, Bit 3DSTATE_DEPTH_BUFFER.SeparateStencilBufferEnable:
|
|
|
|
* [DevSNB]: This field must be set to the same value (enabled
|
|
|
|
* or disabled) as Hierarchical Depth Buffer Enable.
|
|
|
|
*/
|
|
|
|
fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED;
|
|
|
|
}
|
2011-07-12 10:01:32 -07:00
|
|
|
}
|
2009-01-22 15:32:38 -07:00
|
|
|
}
|
2009-02-26 16:51:50 -07:00
|
|
|
|
2011-01-04 09:57:21 -08:00
|
|
|
for (i = 0; i < Elements(fb->Attachment); i++) {
|
|
|
|
struct gl_renderbuffer *rb;
|
|
|
|
struct intel_renderbuffer *irb;
|
2009-04-09 18:30:12 -07:00
|
|
|
|
2011-01-04 09:57:21 -08:00
|
|
|
if (fb->Attachment[i].Type == GL_NONE)
|
2009-04-09 18:30:12 -07:00
|
|
|
continue;
|
|
|
|
|
2011-01-04 09:57:21 -08:00
|
|
|
/* A supported attachment will have a Renderbuffer set either
|
|
|
|
* from being a Renderbuffer or being a texture that got the
|
|
|
|
* intel_wrap_texture() treatment.
|
|
|
|
*/
|
|
|
|
rb = fb->Attachment[i].Renderbuffer;
|
|
|
|
if (rb == NULL) {
|
|
|
|
DBG("attachment without renderbuffer\n");
|
|
|
|
fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED_EXT;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
irb = intel_renderbuffer(rb);
|
2009-05-20 14:05:03 -07:00
|
|
|
if (irb == NULL) {
|
2009-12-28 14:38:43 -08:00
|
|
|
DBG("software rendering renderbuffer\n");
|
2009-05-20 14:05:03 -07:00
|
|
|
fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED_EXT;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-11-15 12:15:37 -08:00
|
|
|
if (!intel->vtbl.render_target_supported(intel, irb->Base.Format)) {
|
|
|
|
DBG("Unsupported HW texture/renderbuffer format attached: %s\n",
|
2010-12-09 17:08:31 -08:00
|
|
|
_mesa_get_format_name(irb->Base.Format));
|
2009-04-09 18:30:12 -07:00
|
|
|
fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED_EXT;
|
2009-02-26 16:51:50 -07:00
|
|
|
}
|
2011-11-15 12:15:37 -08:00
|
|
|
|
|
|
|
#ifdef I915
|
|
|
|
if (!intel_span_supports_format(irb->Base.Format)) {
|
|
|
|
DBG("Unsupported swrast texture/renderbuffer format attached: %s\n",
|
|
|
|
_mesa_get_format_name(irb->Base.Format));
|
|
|
|
fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED_EXT;
|
|
|
|
}
|
|
|
|
#endif
|
2009-02-26 16:51:50 -07:00
|
|
|
}
|
2009-01-20 15:30:22 -07:00
|
|
|
}
|
|
|
|
|
2011-02-05 10:21:11 +00:00
|
|
|
/**
|
|
|
|
* Try to do a glBlitFramebuffer using glCopyTexSubImage2D
|
|
|
|
* We can do this when the dst renderbuffer is actually a texture and
|
|
|
|
* there is no scaling, mirroring or scissoring.
|
|
|
|
*
|
|
|
|
* \return new buffer mask indicating the buffers left to blit using the
|
|
|
|
* normal path.
|
|
|
|
*/
|
|
|
|
static GLbitfield
|
|
|
|
intel_blit_framebuffer_copy_tex_sub_image(struct gl_context *ctx,
|
|
|
|
GLint srcX0, GLint srcY0,
|
|
|
|
GLint srcX1, GLint srcY1,
|
|
|
|
GLint dstX0, GLint dstY0,
|
|
|
|
GLint dstX1, GLint dstY1,
|
|
|
|
GLbitfield mask, GLenum filter)
|
|
|
|
{
|
|
|
|
if (mask & GL_COLOR_BUFFER_BIT) {
|
|
|
|
const struct gl_framebuffer *drawFb = ctx->DrawBuffer;
|
|
|
|
const struct gl_framebuffer *readFb = ctx->ReadBuffer;
|
|
|
|
const struct gl_renderbuffer_attachment *drawAtt =
|
|
|
|
&drawFb->Attachment[drawFb->_ColorDrawBufferIndexes[0]];
|
2011-12-29 06:36:55 -07:00
|
|
|
struct intel_renderbuffer *srcRb =
|
|
|
|
intel_renderbuffer(readFb->_ColorReadBuffer);
|
2011-02-05 10:21:11 +00:00
|
|
|
|
|
|
|
/* If the source and destination are the same size with no
|
|
|
|
mirroring, the rectangles are within the size of the
|
|
|
|
texture and there is no scissor then we can use
|
|
|
|
glCopyTexSubimage2D to implement the blit. This will end
|
|
|
|
up as a fast hardware blit on some drivers */
|
2011-12-29 06:36:55 -07:00
|
|
|
if (srcRb && drawAtt && drawAtt->Texture &&
|
2011-02-05 10:21:11 +00:00
|
|
|
srcX0 - srcX1 == dstX0 - dstX1 &&
|
|
|
|
srcY0 - srcY1 == dstY0 - dstY1 &&
|
|
|
|
srcX1 >= srcX0 &&
|
|
|
|
srcY1 >= srcY0 &&
|
|
|
|
srcX0 >= 0 && srcX1 <= readFb->Width &&
|
|
|
|
srcY0 >= 0 && srcY1 <= readFb->Height &&
|
|
|
|
dstX0 >= 0 && dstX1 <= drawFb->Width &&
|
|
|
|
dstY0 >= 0 && dstY1 <= drawFb->Height &&
|
|
|
|
!ctx->Scissor.Enabled) {
|
|
|
|
const struct gl_texture_object *texObj = drawAtt->Texture;
|
|
|
|
const GLuint dstLevel = drawAtt->TextureLevel;
|
|
|
|
const GLenum target = texObj->Target;
|
|
|
|
|
|
|
|
struct gl_texture_image *texImage =
|
|
|
|
_mesa_select_tex_image(ctx, texObj, target, dstLevel);
|
|
|
|
|
2011-08-26 10:03:26 -07:00
|
|
|
if (intel_copy_texsubimage(intel_context(ctx),
|
2011-02-05 10:21:11 +00:00
|
|
|
intel_texture_image(texImage),
|
|
|
|
dstX0, dstY0,
|
2011-12-29 06:36:55 -07:00
|
|
|
srcRb,
|
2011-02-05 10:21:11 +00:00
|
|
|
srcX0, srcY0,
|
|
|
|
srcX1 - srcX0, /* width */
|
|
|
|
srcY1 - srcY0))
|
|
|
|
mask &= ~GL_COLOR_BUFFER_BIT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
intel_blit_framebuffer(struct gl_context *ctx,
|
|
|
|
GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
|
|
|
|
GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
|
|
|
|
GLbitfield mask, GLenum filter)
|
|
|
|
{
|
|
|
|
/* Try faster, glCopyTexSubImage2D approach first which uses the BLT. */
|
|
|
|
mask = intel_blit_framebuffer_copy_tex_sub_image(ctx,
|
|
|
|
srcX0, srcY0, srcX1, srcY1,
|
|
|
|
dstX0, dstY0, dstX1, dstY1,
|
|
|
|
mask, filter);
|
|
|
|
if (mask == 0x0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_mesa_meta_BlitFramebuffer(ctx,
|
|
|
|
srcX0, srcY0, srcX1, srcY1,
|
|
|
|
dstX0, dstY0, dstX1, dstY1,
|
|
|
|
mask, filter);
|
|
|
|
}
|
2009-01-20 15:30:22 -07:00
|
|
|
|
2011-11-17 08:03:48 -08:00
|
|
|
void
|
|
|
|
intel_renderbuffer_set_needs_hiz_resolve(struct intel_renderbuffer *irb)
|
|
|
|
{
|
|
|
|
if (irb->mt) {
|
|
|
|
intel_miptree_slice_set_needs_hiz_resolve(irb->mt,
|
|
|
|
irb->mt_level,
|
|
|
|
irb->mt_layer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
intel_renderbuffer_set_needs_depth_resolve(struct intel_renderbuffer *irb)
|
|
|
|
{
|
|
|
|
if (irb->mt) {
|
|
|
|
intel_miptree_slice_set_needs_depth_resolve(irb->mt,
|
|
|
|
irb->mt_level,
|
|
|
|
irb->mt_layer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
intel_renderbuffer_resolve_hiz(struct intel_context *intel,
|
|
|
|
struct intel_renderbuffer *irb)
|
|
|
|
{
|
|
|
|
if (irb->mt)
|
|
|
|
return intel_miptree_slice_resolve_hiz(intel,
|
|
|
|
irb->mt,
|
|
|
|
irb->mt_level,
|
|
|
|
irb->mt_layer);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
intel_renderbuffer_resolve_depth(struct intel_context *intel,
|
|
|
|
struct intel_renderbuffer *irb)
|
|
|
|
{
|
|
|
|
if (irb->mt)
|
|
|
|
return intel_miptree_slice_resolve_depth(intel,
|
|
|
|
irb->mt,
|
|
|
|
irb->mt_level,
|
|
|
|
irb->mt_layer);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-11-07 10:04:59 -08:00
|
|
|
/**
|
|
|
|
* Do one-time context initializations related to GL_EXT_framebuffer_object.
|
|
|
|
* Hook in device driver functions.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
intel_fbo_init(struct intel_context *intel)
|
|
|
|
{
|
|
|
|
intel->ctx.Driver.NewFramebuffer = intel_new_framebuffer;
|
|
|
|
intel->ctx.Driver.NewRenderbuffer = intel_new_renderbuffer;
|
2011-10-11 14:22:45 -07:00
|
|
|
intel->ctx.Driver.MapRenderbuffer = intel_map_renderbuffer;
|
|
|
|
intel->ctx.Driver.UnmapRenderbuffer = intel_unmap_renderbuffer;
|
2007-11-07 10:04:59 -08:00
|
|
|
intel->ctx.Driver.BindFramebuffer = intel_bind_framebuffer;
|
|
|
|
intel->ctx.Driver.FramebufferRenderbuffer = intel_framebuffer_renderbuffer;
|
|
|
|
intel->ctx.Driver.RenderTexture = intel_render_texture;
|
|
|
|
intel->ctx.Driver.FinishRenderTexture = intel_finish_render_texture;
|
|
|
|
intel->ctx.Driver.ResizeBuffers = intel_resize_buffers;
|
2009-01-20 15:30:22 -07:00
|
|
|
intel->ctx.Driver.ValidateFramebuffer = intel_validate_framebuffer;
|
2011-02-05 10:21:11 +00:00
|
|
|
intel->ctx.Driver.BlitFramebuffer = intel_blit_framebuffer;
|
2010-02-11 19:04:02 -05:00
|
|
|
|
|
|
|
#if FEATURE_OES_EGL_image
|
|
|
|
intel->ctx.Driver.EGLImageTargetRenderbufferStorage =
|
|
|
|
intel_image_target_renderbuffer_storage;
|
|
|
|
#endif
|
2007-11-07 10:04:59 -08:00
|
|
|
}
|