2007-05-24 10:41:34 +01:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
s/Tungsten Graphics/VMware/
Tungsten Graphics Inc. was acquired by VMware Inc. in 2008. Leaving the
old copyright name is creating unnecessary confusion, hence this change.
This was the sed script I used:
$ cat tg2vmw.sed
# Run as:
#
# git reset --hard HEAD && find include scons src -type f -not -name 'sed*' -print0 | xargs -0 sed -i -f tg2vmw.sed
#
# Rename copyrights
s/Tungsten Gra\(ph\|hp\)ics,\? [iI]nc\.\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./g
/Copyright/s/Tungsten Graphics\(,\? [iI]nc\.\)\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./
s/TUNGSTEN GRAPHICS/VMWARE/g
# Rename emails
s/alanh@tungstengraphics.com/alanh@vmware.com/
s/jens@tungstengraphics.com/jowen@vmware.com/g
s/jrfonseca-at-tungstengraphics-dot-com/jfonseca-at-vmware-dot-com/
s/jrfonseca\?@tungstengraphics.com/jfonseca@vmware.com/g
s/keithw\?@tungstengraphics.com/keithw@vmware.com/g
s/michel@tungstengraphics.com/daenzer@vmware.com/g
s/thomas-at-tungstengraphics-dot-com/thellstom-at-vmware-dot-com/
s/zack@tungstengraphics.com/zackr@vmware.com/
# Remove dead links
s@Tungsten Graphics (http://www.tungstengraphics.com)@Tungsten Graphics@g
# C string src/gallium/state_trackers/vega/api_misc.c
s/"Tungsten Graphics, Inc"/"VMware, Inc"/
Reviewed-by: Brian Paul <brianp@vmware.com>
2014-01-17 16:27:50 +00:00
|
|
|
* Copyright 2007 VMware, Inc.
|
2007-05-24 10:41:34 +01:00
|
|
|
* 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.
|
s/Tungsten Graphics/VMware/
Tungsten Graphics Inc. was acquired by VMware Inc. in 2008. Leaving the
old copyright name is creating unnecessary confusion, hence this change.
This was the sed script I used:
$ cat tg2vmw.sed
# Run as:
#
# git reset --hard HEAD && find include scons src -type f -not -name 'sed*' -print0 | xargs -0 sed -i -f tg2vmw.sed
#
# Rename copyrights
s/Tungsten Gra\(ph\|hp\)ics,\? [iI]nc\.\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./g
/Copyright/s/Tungsten Graphics\(,\? [iI]nc\.\)\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./
s/TUNGSTEN GRAPHICS/VMWARE/g
# Rename emails
s/alanh@tungstengraphics.com/alanh@vmware.com/
s/jens@tungstengraphics.com/jowen@vmware.com/g
s/jrfonseca-at-tungstengraphics-dot-com/jfonseca-at-vmware-dot-com/
s/jrfonseca\?@tungstengraphics.com/jfonseca@vmware.com/g
s/keithw\?@tungstengraphics.com/keithw@vmware.com/g
s/michel@tungstengraphics.com/daenzer@vmware.com/g
s/thomas-at-tungstengraphics-dot-com/thellstom-at-vmware-dot-com/
s/zack@tungstengraphics.com/zackr@vmware.com/
# Remove dead links
s@Tungsten Graphics (http://www.tungstengraphics.com)@Tungsten Graphics@g
# C string src/gallium/state_trackers/vega/api_misc.c
s/"Tungsten Graphics, Inc"/"VMware, Inc"/
Reviewed-by: Brian Paul <brianp@vmware.com>
2014-01-17 16:27:50 +00:00
|
|
|
* IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
|
2007-05-24 10:41:34 +01:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
2007-08-17 15:27:18 +01:00
|
|
|
#include "main/imports.h"
|
2011-12-03 10:04:18 -07:00
|
|
|
#include "main/accum.h"
|
2012-11-16 10:30:19 -08:00
|
|
|
#include "main/api_exec.h"
|
2007-11-01 17:46:04 -06:00
|
|
|
#include "main/context.h"
|
2011-04-10 12:48:28 -06:00
|
|
|
#include "main/samplerobj.h"
|
2010-06-10 20:23:03 -06:00
|
|
|
#include "main/shaderobj.h"
|
2012-11-16 10:30:19 -08:00
|
|
|
#include "main/version.h"
|
|
|
|
#include "main/vtxfmt.h"
|
2014-03-23 17:01:38 +01:00
|
|
|
#include "main/hash.h"
|
2010-08-04 21:17:13 -07:00
|
|
|
#include "program/prog_cache.h"
|
2007-08-17 15:27:18 +01:00
|
|
|
#include "vbo/vbo.h"
|
2008-06-17 14:27:36 -06:00
|
|
|
#include "glapi/glapi.h"
|
2010-02-07 19:20:52 +08:00
|
|
|
#include "st_context.h"
|
2009-10-05 15:50:11 +01:00
|
|
|
#include "st_debug.h"
|
2008-03-20 14:50:17 -06:00
|
|
|
#include "st_cb_bitmap.h"
|
2008-03-18 17:16:23 -06:00
|
|
|
#include "st_cb_blit.h"
|
2008-03-20 14:50:17 -06:00
|
|
|
#include "st_cb_bufferobjects.h"
|
2007-08-02 10:29:50 -06:00
|
|
|
#include "st_cb_clear.h"
|
2009-12-31 14:47:21 -07:00
|
|
|
#include "st_cb_condrender.h"
|
2007-08-02 14:21:16 -06:00
|
|
|
#include "st_cb_drawpixels.h"
|
2008-06-20 08:09:59 -06:00
|
|
|
#include "st_cb_rasterpos.h"
|
2008-08-12 18:02:44 -06:00
|
|
|
#include "st_cb_drawtex.h"
|
2010-02-25 23:10:47 +08:00
|
|
|
#include "st_cb_eglimage.h"
|
2007-08-09 12:27:44 -06:00
|
|
|
#include "st_cb_fbo.h"
|
2007-09-17 14:24:11 -06:00
|
|
|
#include "st_cb_feedback.h"
|
2013-03-04 06:14:18 +10:00
|
|
|
#include "st_cb_msaa.h"
|
2008-03-24 11:55:29 -06:00
|
|
|
#include "st_cb_program.h"
|
2007-08-11 19:57:37 +01:00
|
|
|
#include "st_cb_queryobj.h"
|
2007-08-10 11:37:21 -06:00
|
|
|
#include "st_cb_readpixels.h"
|
2007-08-06 15:49:11 -06:00
|
|
|
#include "st_cb_texture.h"
|
2010-05-10 21:11:21 -06:00
|
|
|
#include "st_cb_xformfb.h"
|
2007-08-10 12:57:14 +01:00
|
|
|
#include "st_cb_flush.h"
|
2011-03-05 20:32:28 +01:00
|
|
|
#include "st_cb_syncobj.h"
|
2007-08-10 16:42:26 +01:00
|
|
|
#include "st_cb_strings.h"
|
2011-03-08 11:32:35 +01:00
|
|
|
#include "st_cb_texturebarrier.h"
|
2010-05-21 20:37:23 +01:00
|
|
|
#include "st_cb_viewport.h"
|
2007-05-24 10:41:34 +01:00
|
|
|
#include "st_atom.h"
|
|
|
|
#include "st_draw.h"
|
2007-11-05 18:04:30 -07:00
|
|
|
#include "st_extensions.h"
|
2008-02-08 14:54:18 -07:00
|
|
|
#include "st_gen_mipmap.h"
|
2007-05-24 10:41:34 +01:00
|
|
|
#include "st_program.h"
|
2013-05-15 15:10:11 +02:00
|
|
|
#include "st_vdpau.h"
|
2014-03-23 17:01:38 +01:00
|
|
|
#include "st_texture.h"
|
2007-06-14 18:23:43 +01:00
|
|
|
#include "pipe/p_context.h"
|
2010-02-02 14:42:17 +00:00
|
|
|
#include "util/u_inlines.h"
|
2012-04-13 19:27:45 +02:00
|
|
|
#include "util/u_upload_mgr.h"
|
2008-03-11 18:54:31 -06:00
|
|
|
#include "cso_cache/cso_context.h"
|
2007-05-24 10:41:34 +01:00
|
|
|
|
2007-08-10 11:37:21 -06:00
|
|
|
|
2010-08-06 15:09:51 -06:00
|
|
|
DEBUG_GET_ONCE_BOOL_OPTION(mesa_mvp_dp4, "MESA_MVP_DP4", FALSE)
|
2010-08-05 17:13:41 -07:00
|
|
|
|
|
|
|
|
2007-10-31 11:08:07 -06:00
|
|
|
/**
|
|
|
|
* Called via ctx->Driver.UpdateState()
|
|
|
|
*/
|
2010-10-12 12:26:10 -04:00
|
|
|
void st_invalidate_state(struct gl_context * ctx, GLuint new_state)
|
2007-05-24 10:41:34 +01:00
|
|
|
{
|
|
|
|
struct st_context *st = st_context(ctx);
|
|
|
|
|
2012-01-23 03:11:17 +01:00
|
|
|
/* Replace _NEW_FRAG_CLAMP with ST_NEW_FRAGMENT_PROGRAM for the fallback. */
|
|
|
|
if (st->clamp_frag_color_in_shader && (new_state & _NEW_FRAG_CLAMP)) {
|
|
|
|
new_state &= ~_NEW_FRAG_CLAMP;
|
|
|
|
st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update the vertex shader if ctx->Light._ClampVertexColor was changed. */
|
|
|
|
if (st->clamp_vert_color_in_shader && (new_state & _NEW_LIGHT)) {
|
|
|
|
st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
|
|
|
|
}
|
|
|
|
|
2007-05-24 10:41:34 +01:00
|
|
|
st->dirty.mesa |= new_state;
|
|
|
|
st->dirty.st |= ST_NEW_MESA;
|
2007-10-31 11:08:07 -06:00
|
|
|
|
|
|
|
/* This is the only core Mesa module we depend upon.
|
|
|
|
* No longer use swrast, swsetup, tnl.
|
|
|
|
*/
|
|
|
|
_vbo_InvalidateState(ctx, new_state);
|
2007-05-24 10:41:34 +01:00
|
|
|
}
|
|
|
|
|
2007-11-05 16:15:43 -07:00
|
|
|
static struct st_context *
|
2012-04-12 04:30:03 +04:00
|
|
|
st_create_context_priv( struct gl_context *ctx, struct pipe_context *pipe,
|
|
|
|
const struct st_config_options *options)
|
2007-05-24 10:41:34 +01:00
|
|
|
{
|
2012-04-24 17:04:18 +02:00
|
|
|
struct pipe_screen *screen = pipe->screen;
|
2008-03-11 18:54:31 -06:00
|
|
|
uint i;
|
2009-02-12 10:14:36 -07:00
|
|
|
struct st_context *st = ST_CALLOC_STRUCT( st_context );
|
2007-05-24 10:41:34 +01:00
|
|
|
|
2012-04-12 04:30:03 +04:00
|
|
|
st->options = *options;
|
|
|
|
|
2007-05-24 10:41:34 +01:00
|
|
|
ctx->st = st;
|
|
|
|
|
|
|
|
st->ctx = ctx;
|
2007-06-14 18:23:43 +01:00
|
|
|
st->pipe = pipe;
|
2007-05-24 10:41:34 +01:00
|
|
|
|
2009-10-05 15:50:11 +01:00
|
|
|
/* XXX: this is one-off, per-screen init: */
|
|
|
|
st_debug_init();
|
|
|
|
|
2007-10-31 11:35:50 -06:00
|
|
|
/* state tracker needs the VBO module */
|
|
|
|
_vbo_CreateContext(ctx);
|
|
|
|
|
2007-05-24 10:41:34 +01:00
|
|
|
st->dirty.mesa = ~0;
|
|
|
|
st->dirty.st = ~0;
|
|
|
|
|
2013-10-17 09:28:17 -06:00
|
|
|
/* Create upload manager for vertex data for glBitmap, glDrawPixels,
|
|
|
|
* glClear, etc.
|
|
|
|
*/
|
2012-04-13 19:27:45 +02:00
|
|
|
st->uploader = u_upload_create(st->pipe, 65536, 4, PIPE_BIND_VERTEX_BUFFER);
|
2012-04-24 17:04:18 +02:00
|
|
|
|
|
|
|
if (!screen->get_param(screen, PIPE_CAP_USER_INDEX_BUFFERS)) {
|
|
|
|
st->indexbuf_uploader = u_upload_create(st->pipe, 128 * 1024, 4,
|
|
|
|
PIPE_BIND_INDEX_BUFFER);
|
|
|
|
}
|
|
|
|
|
2012-04-24 20:16:50 +02:00
|
|
|
if (!screen->get_param(screen, PIPE_CAP_USER_CONSTANT_BUFFERS)) {
|
|
|
|
unsigned alignment =
|
|
|
|
screen->get_param(screen, PIPE_CAP_CONSTANT_BUFFER_OFFSET_ALIGNMENT);
|
|
|
|
|
|
|
|
st->constbuf_uploader = u_upload_create(pipe, 128 * 1024, alignment,
|
|
|
|
PIPE_BIND_CONSTANT_BUFFER);
|
|
|
|
}
|
|
|
|
|
2008-03-11 18:54:31 -06:00
|
|
|
st->cso_context = cso_create_context(pipe);
|
2007-09-14 04:08:58 -04:00
|
|
|
|
2007-05-24 10:41:34 +01:00
|
|
|
st_init_atoms( st );
|
2008-03-28 14:53:47 -06:00
|
|
|
st_init_bitmap(st);
|
2008-04-03 12:54:32 -06:00
|
|
|
st_init_clear(st);
|
2007-05-24 10:41:34 +01:00
|
|
|
st_init_draw( st );
|
2007-08-02 20:40:19 -06:00
|
|
|
|
2013-10-17 09:28:17 -06:00
|
|
|
/* Choose texture target for glDrawPixels, glBitmap, renderbuffers */
|
|
|
|
if (pipe->screen->get_param(pipe->screen, PIPE_CAP_NPOT_TEXTURES))
|
2010-08-06 07:39:21 +02:00
|
|
|
st->internal_target = PIPE_TEXTURE_2D;
|
|
|
|
else
|
|
|
|
st->internal_target = PIPE_TEXTURE_RECT;
|
|
|
|
|
2012-08-17 14:33:31 -06:00
|
|
|
/* Vertex element objects used for drawing rectangles for glBitmap,
|
|
|
|
* glDrawPixels, glClear, etc.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < Elements(st->velems_util_draw); i++) {
|
2010-03-09 15:09:01 +01:00
|
|
|
memset(&st->velems_util_draw[i], 0, sizeof(struct pipe_vertex_element));
|
|
|
|
st->velems_util_draw[i].src_offset = i * 4 * sizeof(float);
|
|
|
|
st->velems_util_draw[i].instance_divisor = 0;
|
2012-03-29 17:51:50 +02:00
|
|
|
st->velems_util_draw[i].vertex_buffer_index =
|
|
|
|
cso_get_aux_vertex_buffer_slot(st->cso_context);
|
2010-03-09 15:09:01 +01:00
|
|
|
st->velems_util_draw[i].src_format = PIPE_FORMAT_R32G32B32A32_FLOAT;
|
|
|
|
}
|
|
|
|
|
2007-08-17 15:27:18 +01:00
|
|
|
/* we want all vertex data to be placed in buffer objects */
|
|
|
|
vbo_use_buffer_objects(ctx);
|
|
|
|
|
2011-10-25 17:41:12 -06:00
|
|
|
|
|
|
|
/* make sure that no VBOs are left mapped when we're drawing. */
|
|
|
|
vbo_always_unmap_buffers(ctx);
|
|
|
|
|
2007-08-06 20:53:28 +01:00
|
|
|
/* Need these flags:
|
|
|
|
*/
|
|
|
|
st->ctx->FragmentProgram._MaintainTexEnvProgram = GL_TRUE;
|
|
|
|
|
2007-08-16 17:33:49 -06:00
|
|
|
st->ctx->VertexProgram._MaintainTnlProgram = GL_TRUE;
|
|
|
|
|
2007-10-30 16:13:37 -06:00
|
|
|
st->pixel_xfer.cache = _mesa_new_program_cache();
|
2007-10-30 12:24:05 -06:00
|
|
|
|
2012-07-09 05:08:36 +02:00
|
|
|
st->has_stencil_export =
|
|
|
|
screen->get_param(screen, PIPE_CAP_SHADER_STENCIL_EXPORT);
|
2013-01-31 22:30:44 +01:00
|
|
|
st->has_shader_model3 = screen->get_param(screen, PIPE_CAP_SM3);
|
2014-08-02 21:38:25 +02:00
|
|
|
st->has_etc1 = screen->is_format_supported(screen, PIPE_FORMAT_ETC1_RGB8,
|
|
|
|
PIPE_TEXTURE_2D, 0,
|
|
|
|
PIPE_BIND_SAMPLER_VIEW);
|
2013-03-14 17:18:43 +01:00
|
|
|
st->prefer_blit_based_texture_transfer = screen->get_param(screen,
|
|
|
|
PIPE_CAP_PREFER_BLIT_BASED_TEXTURE_TRANSFER);
|
2008-09-17 14:32:33 -06:00
|
|
|
|
2013-03-15 22:11:31 +01:00
|
|
|
st->needs_texcoord_semantic =
|
|
|
|
screen->get_param(screen, PIPE_CAP_TGSI_TEXCOORD);
|
2013-04-12 13:42:01 +02:00
|
|
|
st->apply_texture_swizzle_to_border_color =
|
|
|
|
!!(screen->get_param(screen, PIPE_CAP_TEXTURE_BORDER_COLOR_QUIRK) &
|
|
|
|
(PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_NV50 |
|
|
|
|
PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_R600));
|
2014-08-03 04:20:31 +02:00
|
|
|
st->has_time_elapsed =
|
|
|
|
screen->get_param(screen, PIPE_CAP_QUERY_TIME_ELAPSED);
|
2013-03-15 22:11:31 +01:00
|
|
|
|
2007-11-05 18:04:30 -07:00
|
|
|
/* GL limits and extensions */
|
|
|
|
st_init_limits(st);
|
2014-08-03 04:20:31 +02:00
|
|
|
st_init_extensions(st->pipe->screen, ctx->API, &ctx->Const,
|
|
|
|
&ctx->Extensions, &st->options, ctx->Mesa_DXTn);
|
|
|
|
|
|
|
|
/* Enable shader-based fallbacks for ARB_color_buffer_float if needed. */
|
|
|
|
if (screen->get_param(screen, PIPE_CAP_VERTEX_COLOR_UNCLAMPED)) {
|
|
|
|
if (!screen->get_param(screen, PIPE_CAP_VERTEX_COLOR_CLAMPED)) {
|
|
|
|
st->clamp_vert_color_in_shader = GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!screen->get_param(screen, PIPE_CAP_FRAGMENT_COLOR_CLAMPED)) {
|
|
|
|
st->clamp_frag_color_in_shader = GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For drivers which cannot do color clamping, it's better to just
|
|
|
|
* disable ARB_color_buffer_float in the core profile, because
|
|
|
|
* the clamping is deprecated there anyway. */
|
|
|
|
if (ctx->API == API_OPENGL_CORE &&
|
|
|
|
(st->clamp_frag_color_in_shader || st->clamp_vert_color_in_shader)) {
|
|
|
|
st->clamp_vert_color_in_shader = GL_FALSE;
|
|
|
|
st->clamp_frag_color_in_shader = GL_FALSE;
|
|
|
|
ctx->Extensions.ARB_color_buffer_float = GL_FALSE;
|
|
|
|
}
|
|
|
|
}
|
2007-08-21 20:15:00 -06:00
|
|
|
|
2012-11-16 10:30:19 -08:00
|
|
|
_mesa_compute_version(ctx);
|
|
|
|
|
2013-01-17 16:49:57 -08:00
|
|
|
_mesa_initialize_dispatch_tables(ctx);
|
2012-11-16 10:30:19 -08:00
|
|
|
_mesa_initialize_vbo_vtxfmt(ctx);
|
|
|
|
|
2007-05-24 10:41:34 +01:00
|
|
|
return st;
|
|
|
|
}
|
|
|
|
|
2012-04-16 04:56:12 +02:00
|
|
|
static void st_init_driver_flags(struct gl_driver_flags *f)
|
|
|
|
{
|
|
|
|
f->NewArray = ST_NEW_VERTEX_ARRAYS;
|
2013-04-15 13:00:54 +02:00
|
|
|
f->NewRasterizerDiscard = ST_NEW_RASTERIZER;
|
2013-04-26 14:21:09 +02:00
|
|
|
f->NewUniformBuffer = ST_NEW_UNIFORM_BUFFER;
|
2012-04-16 04:56:12 +02:00
|
|
|
}
|
2007-05-24 10:41:34 +01:00
|
|
|
|
2010-06-23 17:40:49 +08:00
|
|
|
struct st_context *st_create_context(gl_api api, struct pipe_context *pipe,
|
2010-10-12 11:58:47 -04:00
|
|
|
const struct gl_config *visual,
|
2012-04-12 04:30:03 +04:00
|
|
|
struct st_context *share,
|
|
|
|
const struct st_config_options *options)
|
2007-11-01 17:46:04 -06:00
|
|
|
{
|
2010-10-12 12:26:10 -04:00
|
|
|
struct gl_context *ctx;
|
|
|
|
struct gl_context *shareCtx = share ? share->ctx : NULL;
|
2007-11-05 16:15:43 -07:00
|
|
|
struct dd_function_table funcs;
|
|
|
|
|
|
|
|
memset(&funcs, 0, sizeof(funcs));
|
|
|
|
st_init_driver_functions(&funcs);
|
|
|
|
|
2012-09-29 08:47:56 -06:00
|
|
|
ctx = _mesa_create_context(api, visual, shareCtx, &funcs);
|
2011-07-11 15:42:15 +01:00
|
|
|
if (!ctx) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-11-05 16:15:43 -07:00
|
|
|
|
2012-04-16 04:56:12 +02:00
|
|
|
st_init_driver_flags(&ctx->DriverFlags);
|
|
|
|
|
2009-05-05 12:12:28 +01:00
|
|
|
/* XXX: need a capability bit in gallium to query if the pipe
|
|
|
|
* driver prefers DP4 or MUL/MAD for vertex transformation.
|
|
|
|
*/
|
2010-08-05 17:13:41 -07:00
|
|
|
if (debug_get_option_mesa_mvp_dp4())
|
2014-01-03 14:48:53 -08:00
|
|
|
ctx->ShaderCompilerOptions[MESA_SHADER_VERTEX].OptimizeForAOS = GL_TRUE;
|
2009-05-05 12:12:28 +01:00
|
|
|
|
2012-04-12 04:30:03 +04:00
|
|
|
return st_create_context_priv(ctx, pipe, options);
|
2007-11-01 17:46:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-05 16:15:43 -07:00
|
|
|
static void st_destroy_context_priv( struct st_context *st )
|
2007-05-24 10:41:34 +01:00
|
|
|
{
|
2012-08-09 20:59:44 -06:00
|
|
|
uint shader, i;
|
2007-12-26 07:16:12 -07:00
|
|
|
|
2007-05-24 10:41:34 +01:00
|
|
|
st_destroy_atoms( st );
|
|
|
|
st_destroy_draw( st );
|
2008-03-20 09:13:51 -06:00
|
|
|
st_destroy_clear(st);
|
2008-06-17 16:57:02 -06:00
|
|
|
st_destroy_bitmap(st);
|
2008-05-20 13:38:45 -06:00
|
|
|
st_destroy_drawpix(st);
|
2008-08-12 18:02:44 -06:00
|
|
|
st_destroy_drawtex(st);
|
2007-08-02 20:40:19 -06:00
|
|
|
|
2012-08-09 20:59:44 -06:00
|
|
|
for (shader = 0; shader < Elements(st->state.sampler_views); shader++) {
|
|
|
|
for (i = 0; i < Elements(st->state.sampler_views[0]); i++) {
|
|
|
|
pipe_sampler_view_release(st->pipe,
|
|
|
|
&st->state.sampler_views[shader][i]);
|
|
|
|
}
|
2008-05-16 16:04:30 -06:00
|
|
|
}
|
|
|
|
|
2008-08-14 15:38:09 -06:00
|
|
|
if (st->default_texture) {
|
|
|
|
st->ctx->Driver.DeleteTexture(st->ctx, st->default_texture);
|
|
|
|
st->default_texture = NULL;
|
|
|
|
}
|
|
|
|
|
2012-04-13 19:27:45 +02:00
|
|
|
u_upload_destroy(st->uploader);
|
2012-04-24 17:04:18 +02:00
|
|
|
if (st->indexbuf_uploader) {
|
|
|
|
u_upload_destroy(st->indexbuf_uploader);
|
|
|
|
}
|
2012-04-24 20:16:50 +02:00
|
|
|
if (st->constbuf_uploader) {
|
|
|
|
u_upload_destroy(st->constbuf_uploader);
|
|
|
|
}
|
2010-02-19 11:58:49 -05:00
|
|
|
free( st );
|
2007-05-24 10:41:34 +01:00
|
|
|
}
|
|
|
|
|
2014-03-23 17:01:38 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to release the sampler view attached to a texture object.
|
|
|
|
* Called by _mesa_HashWalk().
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
destroy_tex_sampler_cb(GLuint id, void *data, void *userData)
|
|
|
|
{
|
|
|
|
struct gl_texture_object *texObj = (struct gl_texture_object *) data;
|
|
|
|
struct st_context *st = (struct st_context *) userData;
|
|
|
|
|
|
|
|
st_texture_release_sampler_view(st, st_texture_object(texObj));
|
|
|
|
}
|
2007-05-24 10:41:34 +01:00
|
|
|
|
2007-11-05 16:15:43 -07:00
|
|
|
void st_destroy_context( struct st_context *st )
|
|
|
|
{
|
2008-04-24 12:11:24 -06:00
|
|
|
struct pipe_context *pipe = st->pipe;
|
|
|
|
struct cso_context *cso = st->cso_context;
|
2010-10-12 12:26:10 -04:00
|
|
|
struct gl_context *ctx = st->ctx;
|
2009-05-11 16:09:39 -06:00
|
|
|
GLuint i;
|
2008-04-17 11:12:44 -06:00
|
|
|
|
2014-03-23 17:01:38 +01:00
|
|
|
_mesa_HashWalk(ctx->Shared->TexObjects, destroy_tex_sampler_cb, st);
|
|
|
|
|
2008-04-17 11:12:44 -06:00
|
|
|
/* need to unbind and destroy CSO objects before anything else */
|
2008-04-24 12:11:24 -06:00
|
|
|
cso_release_all(st->cso_context);
|
2008-04-17 11:12:44 -06:00
|
|
|
|
2008-05-20 14:38:22 -06:00
|
|
|
st_reference_fragprog(st, &st->fp, NULL);
|
2014-07-08 16:24:53 -06:00
|
|
|
st_reference_geomprog(st, &st->gp, NULL);
|
2008-05-20 14:38:22 -06:00
|
|
|
st_reference_vertprog(st, &st->vp, NULL);
|
|
|
|
|
2009-05-11 16:09:39 -06:00
|
|
|
/* release framebuffer surfaces */
|
|
|
|
for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
|
|
|
|
pipe_surface_reference(&st->state.framebuffer.cbufs[i], NULL);
|
|
|
|
}
|
|
|
|
pipe_surface_reference(&st->state.framebuffer.zsbuf, NULL);
|
|
|
|
|
2010-10-31 15:55:51 +01:00
|
|
|
pipe->set_index_buffer(pipe, NULL);
|
|
|
|
|
2010-11-02 22:15:15 +01:00
|
|
|
for (i = 0; i < PIPE_SHADER_TYPES; i++) {
|
2010-12-06 20:59:49 +01:00
|
|
|
pipe->set_constant_buffer(pipe, i, 0, NULL);
|
2010-11-02 22:15:15 +01:00
|
|
|
}
|
|
|
|
|
2008-04-17 11:12:44 -06:00
|
|
|
_mesa_delete_program_cache(st->ctx, st->pixel_xfer.cache);
|
|
|
|
|
2008-09-16 08:51:28 -06:00
|
|
|
_vbo_DestroyContext(st->ctx);
|
|
|
|
|
2010-12-13 17:20:12 -07:00
|
|
|
st_destroy_program_variants(st);
|
|
|
|
|
2007-11-05 16:15:43 -07:00
|
|
|
_mesa_free_context_data(ctx);
|
2008-04-24 12:11:24 -06:00
|
|
|
|
2012-04-25 11:41:13 +01:00
|
|
|
/* This will free the st_context too, so 'st' must not be accessed
|
|
|
|
* afterwards. */
|
2007-11-05 16:15:43 -07:00
|
|
|
st_destroy_context_priv(st);
|
2012-04-25 11:41:13 +01:00
|
|
|
st = NULL;
|
2008-04-24 12:11:24 -06:00
|
|
|
|
|
|
|
cso_destroy_context(cso);
|
|
|
|
|
|
|
|
pipe->destroy( pipe );
|
|
|
|
|
2010-02-19 11:58:49 -05:00
|
|
|
free(ctx);
|
2007-11-05 16:15:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-06 20:53:28 +01:00
|
|
|
void st_init_driver_functions(struct dd_function_table *functions)
|
|
|
|
{
|
2010-06-10 20:23:03 -06:00
|
|
|
_mesa_init_shader_object_functions(functions);
|
2011-04-10 12:48:28 -06:00
|
|
|
_mesa_init_sampler_object_functions(functions);
|
2007-11-07 08:18:50 -07:00
|
|
|
|
2011-12-03 10:04:18 -07:00
|
|
|
functions->Accum = _mesa_accum;
|
|
|
|
|
2008-03-18 17:16:23 -06:00
|
|
|
st_init_blit_functions(functions);
|
2008-03-20 14:50:17 -06:00
|
|
|
st_init_bufferobject_functions(functions);
|
2007-08-06 20:53:28 +01:00
|
|
|
st_init_clear_functions(functions);
|
2008-06-17 13:13:34 -06:00
|
|
|
st_init_bitmap_functions(functions);
|
2007-08-06 20:53:28 +01:00
|
|
|
st_init_drawpixels_functions(functions);
|
2008-06-17 13:13:34 -06:00
|
|
|
st_init_rasterpos_functions(functions);
|
2009-09-22 15:00:24 +08:00
|
|
|
|
|
|
|
st_init_drawtex_functions(functions);
|
|
|
|
|
2010-02-25 23:10:47 +08:00
|
|
|
st_init_eglimage_functions(functions);
|
|
|
|
|
2007-08-09 12:27:44 -06:00
|
|
|
st_init_fbo_functions(functions);
|
2007-09-17 14:24:11 -06:00
|
|
|
st_init_feedback_functions(functions);
|
2013-03-04 06:14:18 +10:00
|
|
|
st_init_msaa_functions(functions);
|
2007-08-06 20:53:28 +01:00
|
|
|
st_init_program_functions(functions);
|
2007-08-11 19:57:37 +01:00
|
|
|
st_init_query_functions(functions);
|
2009-12-31 14:47:21 -07:00
|
|
|
st_init_cond_render_functions(functions);
|
2007-08-10 11:37:21 -06:00
|
|
|
st_init_readpixels_functions(functions);
|
2007-08-06 20:53:28 +01:00
|
|
|
st_init_texture_functions(functions);
|
2011-03-08 11:32:35 +01:00
|
|
|
st_init_texture_barrier_functions(functions);
|
2007-08-10 12:57:14 +01:00
|
|
|
st_init_flush_functions(functions);
|
2007-08-10 16:42:26 +01:00
|
|
|
st_init_string_functions(functions);
|
2010-05-21 20:37:23 +01:00
|
|
|
st_init_viewport_functions(functions);
|
2007-10-31 11:08:07 -06:00
|
|
|
|
2010-05-10 21:11:21 -06:00
|
|
|
st_init_xformfb_functions(functions);
|
2011-03-05 20:32:28 +01:00
|
|
|
st_init_syncobj_functions(functions);
|
2010-05-10 21:11:21 -06:00
|
|
|
|
2013-05-15 15:10:11 +02:00
|
|
|
st_init_vdpau_functions(functions);
|
|
|
|
|
2007-10-31 11:08:07 -06:00
|
|
|
functions->UpdateState = st_invalidate_state;
|
2007-08-06 20:53:28 +01:00
|
|
|
}
|