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.
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
2008-09-18 15:17:05 -06:00
|
|
|
#include "main/imports.h"
|
2009-01-22 15:43:40 -07:00
|
|
|
#include "main/macros.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"
|
|
|
|
#include "main/texrender.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"
|
|
|
|
#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"
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
#define FILE_DEBUG_FLAG DEBUG_FBO
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
|
|
|
GET_CURRENT_CONTEXT(ctx);
|
|
|
|
struct intel_context *intel = intel_context(ctx);
|
|
|
|
struct intel_renderbuffer *irb = intel_renderbuffer(rb);
|
|
|
|
|
|
|
|
ASSERT(irb);
|
|
|
|
|
|
|
|
if (intel && irb->region) {
|
|
|
|
intel_region_release(&irb->region);
|
|
|
|
}
|
|
|
|
|
2010-02-19 11:58:49 -05:00
|
|
|
free(irb);
|
2007-11-07 10:04:59 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a pointer to a specific pixel in a renderbuffer.
|
|
|
|
*/
|
|
|
|
static void *
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_get_pointer(struct gl_context * ctx, struct gl_renderbuffer *rb,
|
2007-11-07 10:04:59 -08:00
|
|
|
GLint x, GLint y)
|
|
|
|
{
|
|
|
|
/* By returning NULL we force all software rendering to go through
|
|
|
|
* the span routines.
|
|
|
|
*/
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called via glRenderbufferStorageEXT() to set the format and allocate
|
|
|
|
* storage for a user-created renderbuffer.
|
|
|
|
*/
|
|
|
|
static 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);
|
2010-09-30 10:49:47 +08:00
|
|
|
int cpp, tiling;
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
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. */
|
2009-10-21 20:02:33 -06:00
|
|
|
rb->Format = MESA_FORMAT_S8_Z24;
|
2007-11-07 10:04:59 -08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-10-08 20:27:27 -06:00
|
|
|
rb->_BaseFormat = _mesa_base_fbo_format(ctx, internalFormat);
|
2010-12-09 17:08:31 -08:00
|
|
|
rb->DataType = intel_mesa_format_to_rb_datatype(rb->Format);
|
2009-12-08 16:06:13 -08:00
|
|
|
cpp = _mesa_get_format_bytes(rb->Format);
|
2009-10-08 20:27:27 -06:00
|
|
|
|
2010-05-10 17:42:43 -04:00
|
|
|
intel_flush(ctx);
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
/* free old region */
|
|
|
|
if (irb->region) {
|
|
|
|
intel_region_release(&irb->region);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate new memory region/renderbuffer */
|
|
|
|
|
2009-12-08 15:51:18 -08:00
|
|
|
/* alloc hardware renderbuffer */
|
2010-03-16 16:20:03 -07:00
|
|
|
DBG("Allocating %d x %d Intel RBO\n", width, height);
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2010-09-30 10:49:47 +08:00
|
|
|
tiling = I915_TILING_NONE;
|
|
|
|
|
|
|
|
/* Gen6 requires depth must be tiling */
|
|
|
|
if (intel->gen >= 6 && rb->Format == MESA_FORMAT_S8_Z24)
|
|
|
|
tiling = I915_TILING_Y;
|
|
|
|
|
|
|
|
irb->region = intel_region_alloc(intel->intelScreen, tiling, cpp,
|
2010-03-16 16:20:03 -07:00
|
|
|
width, height, GL_TRUE);
|
2009-12-08 15:51:18 -08:00
|
|
|
if (!irb->region)
|
|
|
|
return GL_FALSE; /* out of memory? */
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2009-12-08 15:51:18 -08:00
|
|
|
ASSERT(irb->region->buffer);
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2009-12-08 15:51:18 -08:00
|
|
|
rb->Width = width;
|
|
|
|
rb->Height = height;
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2009-12-08 15:51:18 -08:00
|
|
|
return GL_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;
|
|
|
|
|
|
|
|
irb = intel_renderbuffer(rb);
|
|
|
|
if (irb->region)
|
|
|
|
intel_region_release(&irb->region);
|
|
|
|
intel_region_reference(&irb->region, image->region);
|
|
|
|
|
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->DataType = image->data_type;
|
|
|
|
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
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
fb->Initialized = GL_TRUE; /* XXX remove someday */
|
|
|
|
|
|
|
|
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.");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-09 16:55:32 -05:00
|
|
|
void
|
2010-05-04 22:02:18 -07:00
|
|
|
intel_renderbuffer_set_region(struct intel_context *intel,
|
|
|
|
struct intel_renderbuffer *rb,
|
2008-01-09 16:55:32 -05:00
|
|
|
struct intel_region *region)
|
|
|
|
{
|
|
|
|
struct intel_region *old;
|
|
|
|
|
|
|
|
old = rb->region;
|
|
|
|
rb->region = NULL;
|
|
|
|
intel_region_reference(&rb->region, region);
|
|
|
|
intel_region_release(&old);
|
|
|
|
}
|
2007-11-07 10:04:59 -08:00
|
|
|
|
2009-01-29 14:57:31 -07:00
|
|
|
|
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;
|
|
|
|
|
2009-10-29 19:12:50 -06:00
|
|
|
switch (format) {
|
|
|
|
case MESA_FORMAT_RGB565:
|
2009-10-08 20:27:27 -06:00
|
|
|
irb->Base._BaseFormat = GL_RGB;
|
2007-11-07 10:04:59 -08:00
|
|
|
break;
|
2009-10-29 19:12:50 -06:00
|
|
|
case MESA_FORMAT_XRGB8888:
|
2009-02-25 22:54:51 -08:00
|
|
|
irb->Base._BaseFormat = GL_RGB;
|
|
|
|
break;
|
2009-10-29 19:12:50 -06:00
|
|
|
case MESA_FORMAT_ARGB8888:
|
2007-11-07 10:04:59 -08:00
|
|
|
irb->Base._BaseFormat = GL_RGBA;
|
|
|
|
break;
|
2009-10-29 19:12:50 -06:00
|
|
|
case MESA_FORMAT_Z16:
|
2007-11-07 10:04:59 -08:00
|
|
|
irb->Base._BaseFormat = GL_DEPTH_COMPONENT;
|
|
|
|
break;
|
2009-10-29 19:12:50 -06:00
|
|
|
case MESA_FORMAT_X8_Z24:
|
2007-11-07 10:04:59 -08:00
|
|
|
irb->Base._BaseFormat = GL_DEPTH_COMPONENT;
|
|
|
|
break;
|
2009-10-29 19:12:50 -06:00
|
|
|
case MESA_FORMAT_S8_Z24:
|
2009-10-08 20:27:27 -06:00
|
|
|
irb->Base._BaseFormat = GL_DEPTH_STENCIL;
|
2007-11-07 10:04:59 -08:00
|
|
|
break;
|
2010-05-25 11:45:05 -07:00
|
|
|
case MESA_FORMAT_A8:
|
|
|
|
irb->Base._BaseFormat = GL_ALPHA;
|
|
|
|
break;
|
2009-11-20 10:45:36 -08:00
|
|
|
case MESA_FORMAT_R8:
|
|
|
|
irb->Base._BaseFormat = GL_RED;
|
|
|
|
break;
|
|
|
|
case MESA_FORMAT_RG88:
|
|
|
|
irb->Base._BaseFormat = GL_RG;
|
|
|
|
break;
|
2007-11-07 10:04:59 -08:00
|
|
|
default:
|
|
|
|
_mesa_problem(NULL,
|
|
|
|
"Unexpected intFormat in intel_create_renderbuffer");
|
2010-02-19 11:58:49 -05:00
|
|
|
free(irb);
|
2007-11-07 10:04:59 -08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-10-29 19:12:50 -06:00
|
|
|
irb->Base.Format = format;
|
|
|
|
irb->Base.InternalFormat = irb->Base._BaseFormat;
|
2010-12-09 17:08:31 -08:00
|
|
|
irb->Base.DataType = intel_mesa_format_to_rb_datatype(format);
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
/* intel-specific methods */
|
|
|
|
irb->Base.Delete = intel_delete_renderbuffer;
|
|
|
|
irb->Base.AllocStorage = intel_alloc_window_storage;
|
|
|
|
irb->Base.GetPointer = intel_get_pointer;
|
|
|
|
|
|
|
|
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;
|
|
|
|
irb->Base.GetPointer = intel_get_pointer;
|
|
|
|
/* 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) {
|
|
|
|
intel_draw_buffer(ctx, fb);
|
|
|
|
}
|
|
|
|
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);
|
|
|
|
|
2010-05-10 17:42:43 -04:00
|
|
|
intel_flush(ctx);
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
_mesa_framebuffer_renderbuffer(ctx, fb, attachment, rb);
|
|
|
|
intel_draw_buffer(ctx, fb);
|
|
|
|
}
|
|
|
|
|
2009-01-29 14:57:31 -07:00
|
|
|
|
2008-03-14 11:39:08 +08:00
|
|
|
static GLboolean
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_update_wrapper(struct gl_context *ctx, struct intel_renderbuffer *irb,
|
2008-08-24 17:59:10 +10:00
|
|
|
struct gl_texture_image *texImage)
|
2007-11-07 10:04:59 -08:00
|
|
|
{
|
2010-12-09 17:08:31 -08:00
|
|
|
if (!intel_span_supports_format(texImage->TexFormat)) {
|
2009-12-28 14:38:43 -08:00
|
|
|
DBG("Render to texture BAD FORMAT %s\n",
|
|
|
|
_mesa_get_format_name(texImage->TexFormat));
|
2008-03-14 11:39:08 +08:00
|
|
|
return GL_FALSE;
|
2010-12-09 17:08:31 -08:00
|
|
|
} else {
|
|
|
|
DBG("Render to texture %s\n", _mesa_get_format_name(texImage->TexFormat));
|
2007-11-07 10:04:59 -08:00
|
|
|
}
|
|
|
|
|
2009-10-08 20:27:27 -06:00
|
|
|
irb->Base.Format = texImage->TexFormat;
|
2010-12-09 17:08:31 -08:00
|
|
|
irb->Base.DataType = intel_mesa_format_to_rb_datatype(texImage->TexFormat);
|
2009-10-08 20:27:27 -06:00
|
|
|
irb->Base.InternalFormat = texImage->InternalFormat;
|
|
|
|
irb->Base._BaseFormat = _mesa_base_fbo_format(ctx, irb->Base.InternalFormat);
|
2007-11-07 10:04:59 -08:00
|
|
|
irb->Base.Width = texImage->Width;
|
|
|
|
irb->Base.Height = texImage->Height;
|
|
|
|
|
|
|
|
irb->Base.Delete = intel_delete_renderbuffer;
|
|
|
|
irb->Base.AllocStorage = intel_nop_alloc_storage;
|
|
|
|
|
2008-03-14 11:39:08 +08:00
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
2009-01-29 14:57:31 -07:00
|
|
|
|
2008-03-14 11:39:08 +08:00
|
|
|
/**
|
|
|
|
* When glFramebufferTexture[123]D is called this function sets up the
|
|
|
|
* gl_renderbuffer wrapper around the texture image.
|
|
|
|
* This will have the region info needed for hardware rendering.
|
|
|
|
*/
|
|
|
|
static struct intel_renderbuffer *
|
2010-10-12 12:26:10 -04:00
|
|
|
intel_wrap_texture(struct gl_context * ctx, struct gl_texture_image *texImage)
|
2008-03-14 11:39:08 +08:00
|
|
|
{
|
2009-01-29 14:57:31 -07:00
|
|
|
const GLuint name = ~0; /* not significant, but distinct for debugging */
|
2008-03-14 11:39:08 +08:00
|
|
|
struct intel_renderbuffer *irb;
|
|
|
|
|
|
|
|
/* make an intel_renderbuffer to wrap the texture image */
|
|
|
|
irb = CALLOC_STRUCT(intel_renderbuffer);
|
|
|
|
if (!irb) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glFramebufferTexture");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
_mesa_init_renderbuffer(&irb->Base, name);
|
|
|
|
irb->Base.ClassID = INTEL_RB_CLASS;
|
|
|
|
|
|
|
|
if (!intel_update_wrapper(ctx, irb, texImage)) {
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
|
|
|
struct gl_texture_image *newImage
|
|
|
|
= att->Texture->Image[att->CubeMapFace][att->TextureLevel];
|
|
|
|
struct intel_renderbuffer *irb = intel_renderbuffer(att->Renderbuffer);
|
|
|
|
struct intel_texture_image *intel_image;
|
2009-07-09 09:32:21 -07:00
|
|
|
GLuint dst_x, dst_y;
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
(void) fb;
|
|
|
|
|
|
|
|
ASSERT(newImage);
|
|
|
|
|
2009-05-20 14:16:34 -07:00
|
|
|
intel_image = intel_texture_image(newImage);
|
|
|
|
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);
|
|
|
|
_mesa_render_texture(ctx, fb, att);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (!irb) {
|
2007-11-07 10:04:59 -08:00
|
|
|
irb = intel_wrap_texture(ctx, newImage);
|
|
|
|
if (irb) {
|
|
|
|
/* bind the wrapper to the attachment point */
|
|
|
|
_mesa_reference_renderbuffer(&att->Renderbuffer, &irb->Base);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* fallback to software rendering */
|
|
|
|
_mesa_render_texture(ctx, fb, att);
|
|
|
|
return;
|
|
|
|
}
|
2009-01-29 14:57:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!intel_update_wrapper(ctx, irb, newImage)) {
|
2008-03-14 11:39:08 +08:00
|
|
|
_mesa_reference_renderbuffer(&att->Renderbuffer, NULL);
|
|
|
|
_mesa_render_texture(ctx, fb, att);
|
|
|
|
return;
|
2007-11-07 10:04:59 -08:00
|
|
|
}
|
|
|
|
|
2010-02-20 01:58:27 -08:00
|
|
|
DBG("Begin render texture tid %lx tex=%u w=%d h=%d refcount=%d\n",
|
2007-11-07 10:04:59 -08:00
|
|
|
_glthread_GetID(),
|
|
|
|
att->Texture->Name, newImage->Width, newImage->Height,
|
|
|
|
irb->Base.RefCount);
|
|
|
|
|
|
|
|
/* point the renderbufer's region to the texture image region */
|
|
|
|
if (irb->region != intel_image->mt->region) {
|
|
|
|
if (irb->region)
|
|
|
|
intel_region_release(&irb->region);
|
|
|
|
intel_region_reference(&irb->region, intel_image->mt->region);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* compute offset of the particular 2D image within the texture region */
|
2009-07-09 09:32:21 -07:00
|
|
|
intel_miptree_get_image_offset(intel_image->mt,
|
|
|
|
att->TextureLevel,
|
|
|
|
att->CubeMapFace,
|
|
|
|
att->Zoffset,
|
|
|
|
&dst_x, &dst_y);
|
|
|
|
|
2010-03-17 09:09:54 -07:00
|
|
|
intel_image->mt->region->draw_offset = (dst_y * intel_image->mt->region->pitch +
|
2009-07-09 09:32:21 -07:00
|
|
|
dst_x) * intel_image->mt->cpp;
|
|
|
|
intel_image->mt->region->draw_x = dst_x;
|
|
|
|
intel_image->mt->region->draw_y = dst_y;
|
2009-11-04 14:54:09 -08:00
|
|
|
intel_image->used_as_render_target = GL_TRUE;
|
2007-11-07 10:04:59 -08:00
|
|
|
|
|
|
|
/* update drawing region, etc */
|
|
|
|
intel_draw_buffer(ctx, fb);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
2010-09-24 16:22:08 -07:00
|
|
|
DBG("Finish render texture tid %lx tex=%u\n",
|
|
|
|
_glthread_GetID(), 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)
|
|
|
|
intel_image->used_as_render_target = GL_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.
|
|
|
|
*/
|
|
|
|
intel_batchbuffer_emit_mi_flush(intel->batch);
|
|
|
|
}
|
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
|
|
|
{
|
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);
|
2009-04-09 18:30:12 -07:00
|
|
|
int i;
|
2009-01-22 15:32:38 -07:00
|
|
|
|
2009-12-28 18:15:06 -08:00
|
|
|
if (depthRb && stencilRb && stencilRb != depthRb) {
|
2011-01-04 10:00:51 -08:00
|
|
|
if (fb->Attachment[BUFFER_DEPTH].Type == GL_TEXTURE &&
|
|
|
|
fb->Attachment[BUFFER_STENCIL].Type == GL_TEXTURE &&
|
|
|
|
(fb->Attachment[BUFFER_DEPTH].Texture->Name ==
|
|
|
|
fb->Attachment[BUFFER_STENCIL].Texture->Name)) {
|
2009-12-28 19:09:01 -08:00
|
|
|
/* OK */
|
|
|
|
} else {
|
|
|
|
/* we only support combined depth/stencil buffers, not separate
|
|
|
|
* stencil buffers.
|
|
|
|
*/
|
|
|
|
DBG("Only supports combined depth/stencil (found %s, %s)\n",
|
|
|
|
depthRb ? _mesa_get_format_name(depthRb->Base.Format): "NULL",
|
|
|
|
stencilRb ? _mesa_get_format_name(stencilRb->Base.Format): "NULL");
|
|
|
|
fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED_EXT;
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
2010-12-09 17:08:31 -08:00
|
|
|
if (!intel_span_supports_format(irb->Base.Format)) {
|
|
|
|
DBG("Unsupported texture/renderbuffer format attached: %s\n",
|
|
|
|
_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
|
|
|
}
|
|
|
|
}
|
2009-01-20 15:30:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
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;
|
2009-09-19 17:06:15 -06:00
|
|
|
intel->ctx.Driver.BlitFramebuffer = _mesa_meta_BlitFramebuffer;
|
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
|
|
|
}
|