2007-09-25 14:22:13 -06:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright 2007 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.
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
/*
|
|
|
|
* Authors:
|
|
|
|
* Keith Whitwell <keith@tungstengraphics.com>
|
|
|
|
* Brian Paul
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2007-09-25 15:21:19 -06:00
|
|
|
#include "main/imports.h"
|
|
|
|
#include "main/mtypes.h"
|
2008-01-31 14:35:25 -07:00
|
|
|
#include "shader/prog_print.h"
|
2008-04-01 08:59:13 -06:00
|
|
|
#include "shader/programopt.h"
|
2007-09-25 14:22:13 -06:00
|
|
|
|
|
|
|
#include "pipe/p_context.h"
|
|
|
|
#include "pipe/p_defines.h"
|
2007-11-23 13:28:16 +00:00
|
|
|
#include "pipe/p_shader_tokens.h"
|
2008-02-15 17:50:12 +09:00
|
|
|
#include "draw/draw_context.h"
|
2008-07-28 12:42:13 +09:00
|
|
|
#include "tgsi/tgsi_dump.h"
|
2007-09-25 14:22:13 -06:00
|
|
|
|
2009-10-05 15:50:11 +01:00
|
|
|
#include "st_debug.h"
|
2007-09-25 14:22:13 -06:00
|
|
|
#include "st_context.h"
|
|
|
|
#include "st_program.h"
|
2007-10-27 09:03:15 -06:00
|
|
|
#include "st_mesa_to_tgsi.h"
|
2008-03-11 18:54:31 -06:00
|
|
|
#include "cso_cache/cso_context.h"
|
2007-09-25 14:22:13 -06:00
|
|
|
|
2009-12-07 08:59:38 -07:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clean out any old compilations:
|
|
|
|
*/
|
2009-11-15 11:15:25 -08:00
|
|
|
void
|
|
|
|
st_vp_release_varients( struct st_context *st,
|
|
|
|
struct st_vertex_program *stvp )
|
|
|
|
{
|
|
|
|
struct st_vp_varient *vpv;
|
|
|
|
|
|
|
|
for (vpv = stvp->varients; vpv; ) {
|
|
|
|
struct st_vp_varient *next = vpv->next;
|
|
|
|
|
|
|
|
if (vpv->driver_shader)
|
|
|
|
cso_delete_vertex_shader(st->cso_context, vpv->driver_shader);
|
|
|
|
|
|
|
|
if (vpv->draw_shader)
|
|
|
|
draw_delete_vertex_shader( st->draw, vpv->draw_shader );
|
|
|
|
|
|
|
|
if (vpv->state.tokens)
|
|
|
|
st_free_tokens(vpv->state.tokens);
|
|
|
|
|
|
|
|
FREE( vpv );
|
|
|
|
|
|
|
|
vpv = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
stvp->varients = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-09-25 14:22:13 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Translate a Mesa vertex shader into a TGSI shader.
|
2008-08-18 16:10:01 -06:00
|
|
|
* \param outputMapping to map vertex program output registers (VERT_RESULT_x)
|
|
|
|
* to TGSI output slots
|
2007-09-25 14:22:13 -06:00
|
|
|
* \param tokensOut destination for TGSI tokens
|
|
|
|
* \return pointer to cached pipe_shader object.
|
|
|
|
*/
|
2008-01-14 19:12:46 -07:00
|
|
|
void
|
2009-11-15 11:15:25 -08:00
|
|
|
st_prepare_vertex_program(struct st_context *st,
|
|
|
|
struct st_vertex_program *stvp)
|
2007-09-25 14:22:13 -06:00
|
|
|
{
|
2009-11-15 11:15:25 -08:00
|
|
|
GLuint attr;
|
2008-11-24 14:36:00 -07:00
|
|
|
|
2009-11-15 11:15:25 -08:00
|
|
|
stvp->num_inputs = 0;
|
|
|
|
stvp->num_outputs = 0;
|
2007-09-25 14:22:13 -06:00
|
|
|
|
2008-04-01 08:59:13 -06:00
|
|
|
if (stvp->Base.IsPositionInvariant)
|
|
|
|
_mesa_insert_mvp_code(st->ctx, &stvp->Base);
|
|
|
|
|
2009-12-18 18:39:44 +00:00
|
|
|
assert(stvp->Base.Base.NumInstructions > 1);
|
|
|
|
|
2007-09-25 14:22:13 -06:00
|
|
|
/*
|
|
|
|
* Determine number of inputs, the mappings between VERT_ATTRIB_x
|
|
|
|
* and TGSI generic input indexes, plus input attrib semantic info.
|
|
|
|
*/
|
|
|
|
for (attr = 0; attr < VERT_ATTRIB_MAX; attr++) {
|
|
|
|
if (stvp->Base.Base.InputsRead & (1 << attr)) {
|
2009-11-15 11:15:25 -08:00
|
|
|
stvp->input_to_index[attr] = stvp->num_inputs;
|
|
|
|
stvp->index_to_input[stvp->num_inputs] = attr;
|
|
|
|
stvp->num_inputs++;
|
2007-09-25 14:22:13 -06:00
|
|
|
}
|
|
|
|
}
|
2009-12-16 22:12:16 +01:00
|
|
|
/* bit of a hack, presetup potentially unused edgeflag input */
|
|
|
|
stvp->input_to_index[VERT_ATTRIB_EDGEFLAG] = stvp->num_inputs;
|
|
|
|
stvp->index_to_input[stvp->num_inputs] = VERT_ATTRIB_EDGEFLAG;
|
2007-09-25 14:22:13 -06:00
|
|
|
|
2009-11-15 11:15:25 -08:00
|
|
|
/* Compute mapping of vertex program outputs to slots.
|
2007-09-25 14:22:13 -06:00
|
|
|
*/
|
|
|
|
for (attr = 0; attr < VERT_RESULT_MAX; attr++) {
|
2009-11-15 11:15:25 -08:00
|
|
|
if ((stvp->Base.Base.OutputsWritten & (1 << attr)) == 0) {
|
|
|
|
stvp->result_to_output[attr] = ~0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
unsigned slot = stvp->num_outputs++;
|
|
|
|
|
|
|
|
stvp->result_to_output[attr] = slot;
|
2007-09-25 14:22:13 -06:00
|
|
|
|
|
|
|
switch (attr) {
|
|
|
|
case VERT_RESULT_HPOS:
|
2009-11-15 11:15:25 -08:00
|
|
|
stvp->output_semantic_name[slot] = TGSI_SEMANTIC_POSITION;
|
|
|
|
stvp->output_semantic_index[slot] = 0;
|
2007-09-25 14:22:13 -06:00
|
|
|
break;
|
|
|
|
case VERT_RESULT_COL0:
|
2009-11-15 11:15:25 -08:00
|
|
|
stvp->output_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
|
|
|
|
stvp->output_semantic_index[slot] = 0;
|
2007-09-25 14:22:13 -06:00
|
|
|
break;
|
|
|
|
case VERT_RESULT_COL1:
|
2009-11-15 11:15:25 -08:00
|
|
|
stvp->output_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
|
|
|
|
stvp->output_semantic_index[slot] = 1;
|
2007-09-25 14:22:13 -06:00
|
|
|
break;
|
|
|
|
case VERT_RESULT_BFC0:
|
2009-11-15 11:15:25 -08:00
|
|
|
stvp->output_semantic_name[slot] = TGSI_SEMANTIC_BCOLOR;
|
|
|
|
stvp->output_semantic_index[slot] = 0;
|
2007-09-25 14:22:13 -06:00
|
|
|
break;
|
|
|
|
case VERT_RESULT_BFC1:
|
2009-11-15 11:15:25 -08:00
|
|
|
stvp->output_semantic_name[slot] = TGSI_SEMANTIC_BCOLOR;
|
|
|
|
stvp->output_semantic_index[slot] = 1;
|
2007-09-25 14:22:13 -06:00
|
|
|
break;
|
|
|
|
case VERT_RESULT_FOGC:
|
2009-11-15 11:15:25 -08:00
|
|
|
stvp->output_semantic_name[slot] = TGSI_SEMANTIC_FOG;
|
|
|
|
stvp->output_semantic_index[slot] = 0;
|
2007-09-25 14:22:13 -06:00
|
|
|
break;
|
|
|
|
case VERT_RESULT_PSIZ:
|
2009-11-15 11:15:25 -08:00
|
|
|
stvp->output_semantic_name[slot] = TGSI_SEMANTIC_PSIZE;
|
|
|
|
stvp->output_semantic_index[slot] = 0;
|
2007-09-25 14:22:13 -06:00
|
|
|
break;
|
|
|
|
case VERT_RESULT_EDGE:
|
|
|
|
assert(0);
|
|
|
|
break;
|
2009-11-15 11:15:25 -08:00
|
|
|
|
2007-09-25 14:22:13 -06:00
|
|
|
case VERT_RESULT_TEX0:
|
|
|
|
case VERT_RESULT_TEX1:
|
|
|
|
case VERT_RESULT_TEX2:
|
|
|
|
case VERT_RESULT_TEX3:
|
|
|
|
case VERT_RESULT_TEX4:
|
|
|
|
case VERT_RESULT_TEX5:
|
|
|
|
case VERT_RESULT_TEX6:
|
|
|
|
case VERT_RESULT_TEX7:
|
2009-11-15 11:15:25 -08:00
|
|
|
stvp->output_semantic_name[slot] = TGSI_SEMANTIC_GENERIC;
|
|
|
|
stvp->output_semantic_index[slot] = attr - VERT_RESULT_TEX0;
|
|
|
|
break;
|
|
|
|
|
2007-09-25 14:22:13 -06:00
|
|
|
case VERT_RESULT_VAR0:
|
|
|
|
default:
|
2009-11-15 11:15:25 -08:00
|
|
|
assert(attr < VERT_RESULT_MAX);
|
|
|
|
stvp->output_semantic_name[slot] = TGSI_SEMANTIC_GENERIC;
|
|
|
|
stvp->output_semantic_index[slot] = (FRAG_ATTRIB_VAR0 -
|
|
|
|
FRAG_ATTRIB_TEX0 +
|
|
|
|
attr -
|
|
|
|
VERT_RESULT_VAR0);
|
|
|
|
break;
|
2007-09-25 14:22:13 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-12-18 15:54:28 +01:00
|
|
|
/* similar hack to above, presetup potentially unused edgeflag output */
|
|
|
|
stvp->result_to_output[VERT_RESULT_EDGE] = stvp->num_outputs;
|
|
|
|
stvp->output_semantic_name[stvp->num_outputs] = TGSI_SEMANTIC_EDGEFLAG;
|
|
|
|
stvp->output_semantic_index[stvp->num_outputs] = 0;
|
2009-11-15 11:15:25 -08:00
|
|
|
}
|
2007-09-25 14:22:13 -06:00
|
|
|
|
2009-06-11 09:48:38 -06:00
|
|
|
|
2009-11-15 11:15:25 -08:00
|
|
|
struct st_vp_varient *
|
|
|
|
st_translate_vertex_program(struct st_context *st,
|
|
|
|
struct st_vertex_program *stvp,
|
|
|
|
const struct st_vp_varient_key *key)
|
|
|
|
{
|
|
|
|
struct st_vp_varient *vpv = CALLOC_STRUCT(st_vp_varient);
|
|
|
|
struct pipe_context *pipe = st->pipe;
|
2009-12-09 19:03:10 +01:00
|
|
|
struct ureg_program *ureg;
|
2009-12-14 18:36:33 +01:00
|
|
|
enum pipe_error error;
|
2009-12-18 15:54:28 +01:00
|
|
|
unsigned num_outputs;
|
2008-03-22 10:29:30 -06:00
|
|
|
|
2009-12-09 19:03:10 +01:00
|
|
|
ureg = ureg_create( TGSI_PROCESSOR_VERTEX );
|
|
|
|
if (ureg == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2009-12-16 22:12:16 +01:00
|
|
|
vpv->num_inputs = stvp->num_inputs;
|
2009-12-18 15:54:28 +01:00
|
|
|
num_outputs = stvp->num_outputs;
|
|
|
|
if (key->passthrough_edgeflags) {
|
|
|
|
vpv->num_inputs++;
|
|
|
|
num_outputs++;
|
|
|
|
}
|
2008-03-22 10:29:30 -06:00
|
|
|
|
2009-12-09 19:03:10 +01:00
|
|
|
error =
|
2009-09-12 14:22:48 -07:00
|
|
|
st_translate_mesa_program(st->ctx,
|
|
|
|
TGSI_PROCESSOR_VERTEX,
|
2009-12-09 19:03:10 +01:00
|
|
|
ureg,
|
2009-09-12 14:22:48 -07:00
|
|
|
&stvp->Base.Base,
|
|
|
|
/* inputs */
|
2009-12-18 15:54:28 +01:00
|
|
|
vpv->num_inputs,
|
2009-09-12 14:22:48 -07:00
|
|
|
stvp->input_to_index,
|
2009-11-14 19:46:45 -08:00
|
|
|
NULL, /* input semantic name */
|
|
|
|
NULL, /* input semantic index */
|
2009-09-12 14:22:48 -07:00
|
|
|
NULL,
|
|
|
|
/* outputs */
|
2009-12-18 15:54:28 +01:00
|
|
|
num_outputs,
|
2009-11-15 11:15:25 -08:00
|
|
|
stvp->result_to_output,
|
|
|
|
stvp->output_semantic_name,
|
2009-12-18 15:54:28 +01:00
|
|
|
stvp->output_semantic_index,
|
|
|
|
key->passthrough_edgeflags );
|
2007-10-29 08:27:32 -04:00
|
|
|
|
2009-12-14 18:36:33 +01:00
|
|
|
if (error)
|
2009-12-09 19:03:10 +01:00
|
|
|
goto fail;
|
|
|
|
|
2009-12-14 18:36:33 +01:00
|
|
|
vpv->state.tokens = ureg_get_tokens( ureg, NULL );
|
2009-12-18 16:09:32 +01:00
|
|
|
if (!vpv->state.tokens)
|
|
|
|
goto fail;
|
|
|
|
|
2009-12-09 19:03:10 +01:00
|
|
|
ureg_destroy( ureg );
|
2007-10-29 08:27:32 -04:00
|
|
|
|
2009-11-15 11:15:25 -08:00
|
|
|
vpv->driver_shader = pipe->create_vs_state(pipe, &vpv->state);
|
2007-09-25 14:22:13 -06:00
|
|
|
|
2009-10-05 15:50:11 +01:00
|
|
|
if ((ST_DEBUG & DEBUG_TGSI) && (ST_DEBUG & DEBUG_MESA)) {
|
2008-01-31 14:35:25 -07:00
|
|
|
_mesa_print_program(&stvp->Base.Base);
|
2009-10-05 15:50:11 +01:00
|
|
|
debug_printf("\n");
|
|
|
|
}
|
2008-01-31 14:35:25 -07:00
|
|
|
|
2009-10-05 15:50:11 +01:00
|
|
|
if (ST_DEBUG & DEBUG_TGSI) {
|
2009-11-15 11:15:25 -08:00
|
|
|
tgsi_dump( vpv->state.tokens, 0 );
|
2009-10-05 15:50:11 +01:00
|
|
|
debug_printf("\n");
|
|
|
|
}
|
2009-11-15 11:15:25 -08:00
|
|
|
|
|
|
|
return vpv;
|
2009-12-09 19:03:10 +01:00
|
|
|
|
|
|
|
fail:
|
2009-12-18 16:09:32 +01:00
|
|
|
debug_printf("%s: failed to translate Mesa program:\n", __FUNCTION__);
|
|
|
|
_mesa_print_program(&stvp->Base.Base);
|
|
|
|
debug_assert(0);
|
|
|
|
|
2009-12-09 19:03:10 +01:00
|
|
|
ureg_destroy( ureg );
|
|
|
|
return NULL;
|
2007-09-25 14:22:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Translate a Mesa fragment shader into a TGSI shader.
|
|
|
|
* \return pointer to cached pipe_shader object.
|
|
|
|
*/
|
2008-04-22 14:41:32 -06:00
|
|
|
void
|
2007-09-25 14:22:13 -06:00
|
|
|
st_translate_fragment_program(struct st_context *st,
|
2010-02-01 20:42:34 +00:00
|
|
|
struct st_fragment_program *stfp )
|
2007-09-25 14:22:13 -06:00
|
|
|
{
|
2008-03-11 18:54:31 -06:00
|
|
|
struct pipe_context *pipe = st->pipe;
|
2007-09-25 14:22:13 -06:00
|
|
|
GLuint outputMapping[FRAG_RESULT_MAX];
|
2010-02-01 20:42:34 +00:00
|
|
|
GLuint inputMapping[FRAG_ATTRIB_MAX];
|
2007-09-25 14:22:13 -06:00
|
|
|
GLuint interpMode[16]; /* XXX size? */
|
|
|
|
GLuint attr;
|
2009-12-14 18:36:33 +01:00
|
|
|
enum pipe_error error;
|
2007-12-14 11:00:46 -07:00
|
|
|
const GLbitfield inputsRead = stfp->Base.Base.InputsRead;
|
2009-12-09 19:03:10 +01:00
|
|
|
struct ureg_program *ureg;
|
2007-09-25 14:22:13 -06:00
|
|
|
|
2008-03-13 18:08:18 +00:00
|
|
|
uint fs_num_inputs = 0;
|
|
|
|
|
|
|
|
ubyte fs_output_semantic_name[PIPE_MAX_SHADER_OUTPUTS];
|
|
|
|
ubyte fs_output_semantic_index[PIPE_MAX_SHADER_OUTPUTS];
|
|
|
|
uint fs_num_outputs = 0;
|
|
|
|
|
2007-09-25 14:22:13 -06:00
|
|
|
/*
|
|
|
|
* Convert Mesa program inputs to TGSI input register semantics.
|
|
|
|
*/
|
|
|
|
for (attr = 0; attr < FRAG_ATTRIB_MAX; attr++) {
|
|
|
|
if (inputsRead & (1 << attr)) {
|
2010-02-01 20:42:34 +00:00
|
|
|
const GLuint slot = fs_num_inputs++;
|
2007-09-25 14:22:13 -06:00
|
|
|
|
2010-02-01 20:42:34 +00:00
|
|
|
inputMapping[attr] = slot;
|
2007-12-14 11:00:46 -07:00
|
|
|
|
2007-09-25 14:22:13 -06:00
|
|
|
switch (attr) {
|
|
|
|
case FRAG_ATTRIB_WPOS:
|
2008-08-18 16:10:01 -06:00
|
|
|
stfp->input_semantic_name[slot] = TGSI_SEMANTIC_POSITION;
|
|
|
|
stfp->input_semantic_index[slot] = 0;
|
2007-12-14 11:00:46 -07:00
|
|
|
interpMode[slot] = TGSI_INTERPOLATE_LINEAR;
|
2007-09-25 14:22:13 -06:00
|
|
|
break;
|
|
|
|
case FRAG_ATTRIB_COL0:
|
2008-08-18 16:10:01 -06:00
|
|
|
stfp->input_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
|
|
|
|
stfp->input_semantic_index[slot] = 0;
|
2007-09-25 14:22:13 -06:00
|
|
|
interpMode[slot] = TGSI_INTERPOLATE_LINEAR;
|
|
|
|
break;
|
|
|
|
case FRAG_ATTRIB_COL1:
|
2008-08-18 16:10:01 -06:00
|
|
|
stfp->input_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
|
|
|
|
stfp->input_semantic_index[slot] = 1;
|
2007-09-25 14:22:13 -06:00
|
|
|
interpMode[slot] = TGSI_INTERPOLATE_LINEAR;
|
|
|
|
break;
|
2009-07-29 20:07:41 -06:00
|
|
|
case FRAG_ATTRIB_FOGC:
|
|
|
|
stfp->input_semantic_name[slot] = TGSI_SEMANTIC_FOG;
|
|
|
|
stfp->input_semantic_index[slot] = 0;
|
|
|
|
interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE;
|
|
|
|
break;
|
|
|
|
case FRAG_ATTRIB_FACE:
|
|
|
|
stfp->input_semantic_name[slot] = TGSI_SEMANTIC_FACE;
|
2009-11-15 11:15:25 -08:00
|
|
|
stfp->input_semantic_index[slot] = 0;
|
2009-07-29 20:07:41 -06:00
|
|
|
interpMode[slot] = TGSI_INTERPOLATE_CONSTANT;
|
|
|
|
break;
|
2010-02-05 09:52:29 -07:00
|
|
|
case FRAG_ATTRIB_PNTC:
|
|
|
|
/* This is a hack. We really need a new semantic label for
|
|
|
|
* point coord. The draw module needs to know which fragment
|
|
|
|
* shader input is the point coord attribute so that it can set
|
|
|
|
* up the right vertex attribute values.
|
|
|
|
*/
|
|
|
|
stfp->input_semantic_name[slot] = TGSI_SEMANTIC_GENERIC;
|
|
|
|
stfp->input_semantic_index[slot] = 0;
|
|
|
|
interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE;
|
|
|
|
break;
|
2009-11-15 11:15:25 -08:00
|
|
|
|
|
|
|
/* In most cases, there is nothing special about these
|
|
|
|
* inputs, so adopt a convention to use the generic
|
|
|
|
* semantic name and the mesa FRAG_ATTRIB_ number as the
|
|
|
|
* index.
|
|
|
|
*
|
|
|
|
* All that is required is that the vertex shader labels
|
|
|
|
* its own outputs similarly, and that the vertex shader
|
|
|
|
* generates at least every output required by the
|
|
|
|
* fragment shader plus fixed-function hardware (such as
|
|
|
|
* BFC).
|
|
|
|
*
|
|
|
|
* There is no requirement that semantic indexes start at
|
|
|
|
* zero or be restricted to a particular range -- nobody
|
|
|
|
* should be building tables based on semantic index.
|
|
|
|
*/
|
2007-09-25 14:22:13 -06:00
|
|
|
case FRAG_ATTRIB_TEX0:
|
|
|
|
case FRAG_ATTRIB_TEX1:
|
|
|
|
case FRAG_ATTRIB_TEX2:
|
|
|
|
case FRAG_ATTRIB_TEX3:
|
|
|
|
case FRAG_ATTRIB_TEX4:
|
|
|
|
case FRAG_ATTRIB_TEX5:
|
|
|
|
case FRAG_ATTRIB_TEX6:
|
|
|
|
case FRAG_ATTRIB_TEX7:
|
|
|
|
case FRAG_ATTRIB_VAR0:
|
|
|
|
default:
|
2009-11-15 11:15:25 -08:00
|
|
|
/* Actually, let's try and zero-base this just for
|
|
|
|
* readability of the generated TGSI.
|
|
|
|
*/
|
|
|
|
assert(attr >= FRAG_ATTRIB_TEX0);
|
|
|
|
stfp->input_semantic_index[slot] = (attr - FRAG_ATTRIB_TEX0);
|
2008-08-18 16:10:01 -06:00
|
|
|
stfp->input_semantic_name[slot] = TGSI_SEMANTIC_GENERIC;
|
2010-02-05 10:18:25 -07:00
|
|
|
interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE;
|
2009-11-15 11:15:25 -08:00
|
|
|
break;
|
2007-09-25 14:22:13 -06:00
|
|
|
}
|
|
|
|
}
|
2010-02-01 20:42:34 +00:00
|
|
|
else {
|
|
|
|
inputMapping[attr] = -1;
|
|
|
|
}
|
2007-09-25 14:22:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2007-10-09 14:55:22 -06:00
|
|
|
* Semantics and mapping for outputs
|
2007-09-25 14:22:13 -06:00
|
|
|
*/
|
2007-10-03 14:43:57 -06:00
|
|
|
{
|
|
|
|
uint numColors = 0;
|
2009-11-17 16:10:24 -08:00
|
|
|
GLbitfield64 outputsWritten = stfp->Base.Base.OutputsWritten;
|
2007-10-03 14:43:57 -06:00
|
|
|
|
2007-10-09 14:55:22 -06:00
|
|
|
/* if z is written, emit that first */
|
2009-02-28 11:49:46 -07:00
|
|
|
if (outputsWritten & (1 << FRAG_RESULT_DEPTH)) {
|
2008-03-13 18:08:18 +00:00
|
|
|
fs_output_semantic_name[fs_num_outputs] = TGSI_SEMANTIC_POSITION;
|
|
|
|
fs_output_semantic_index[fs_num_outputs] = 0;
|
2009-02-28 11:49:46 -07:00
|
|
|
outputMapping[FRAG_RESULT_DEPTH] = fs_num_outputs;
|
2008-03-13 18:08:18 +00:00
|
|
|
fs_num_outputs++;
|
2009-02-28 11:49:46 -07:00
|
|
|
outputsWritten &= ~(1 << FRAG_RESULT_DEPTH);
|
2007-10-03 14:43:57 -06:00
|
|
|
}
|
|
|
|
|
2007-10-09 14:55:22 -06:00
|
|
|
/* handle remaning outputs (color) */
|
2007-10-03 14:43:57 -06:00
|
|
|
for (attr = 0; attr < FRAG_RESULT_MAX; attr++) {
|
|
|
|
if (outputsWritten & (1 << attr)) {
|
|
|
|
switch (attr) {
|
2009-02-28 11:49:46 -07:00
|
|
|
case FRAG_RESULT_DEPTH:
|
2007-10-09 14:55:22 -06:00
|
|
|
/* handled above */
|
2007-10-03 14:43:57 -06:00
|
|
|
assert(0);
|
|
|
|
break;
|
2009-04-15 20:07:48 +01:00
|
|
|
default:
|
|
|
|
assert(attr == FRAG_RESULT_COLOR ||
|
|
|
|
(FRAG_RESULT_DATA0 <= attr && attr < FRAG_RESULT_MAX));
|
2008-03-13 18:08:18 +00:00
|
|
|
fs_output_semantic_name[fs_num_outputs] = TGSI_SEMANTIC_COLOR;
|
|
|
|
fs_output_semantic_index[fs_num_outputs] = numColors;
|
|
|
|
outputMapping[attr] = fs_num_outputs;
|
2007-10-03 14:43:57 -06:00
|
|
|
numColors++;
|
|
|
|
break;
|
|
|
|
}
|
2008-11-24 14:36:00 -07:00
|
|
|
|
2008-03-13 18:08:18 +00:00
|
|
|
fs_num_outputs++;
|
2007-09-25 14:22:13 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-09 19:03:10 +01:00
|
|
|
ureg = ureg_create( TGSI_PROCESSOR_FRAGMENT );
|
|
|
|
if (ureg == NULL)
|
2009-12-14 18:36:33 +01:00
|
|
|
return;
|
2009-12-09 19:03:10 +01:00
|
|
|
|
|
|
|
|
2009-12-14 18:36:33 +01:00
|
|
|
error =
|
2009-09-12 14:22:48 -07:00
|
|
|
st_translate_mesa_program(st->ctx,
|
|
|
|
TGSI_PROCESSOR_FRAGMENT,
|
2009-12-14 18:36:33 +01:00
|
|
|
ureg,
|
2009-09-12 14:22:48 -07:00
|
|
|
&stfp->Base.Base,
|
|
|
|
/* inputs */
|
|
|
|
fs_num_inputs,
|
|
|
|
inputMapping,
|
|
|
|
stfp->input_semantic_name,
|
|
|
|
stfp->input_semantic_index,
|
|
|
|
interpMode,
|
|
|
|
/* outputs */
|
|
|
|
fs_num_outputs,
|
|
|
|
outputMapping,
|
|
|
|
fs_output_semantic_name,
|
2009-12-18 15:54:28 +01:00
|
|
|
fs_output_semantic_index, FALSE );
|
2009-09-12 14:22:48 -07:00
|
|
|
|
2009-12-14 18:36:33 +01:00
|
|
|
stfp->state.tokens = ureg_get_tokens( ureg, NULL );
|
|
|
|
ureg_destroy( ureg );
|
2009-09-12 14:22:48 -07:00
|
|
|
stfp->driver_shader = pipe->create_fs_state(pipe, &stfp->state);
|
2007-09-25 14:22:13 -06:00
|
|
|
|
2009-10-05 15:50:11 +01:00
|
|
|
if ((ST_DEBUG & DEBUG_TGSI) && (ST_DEBUG & DEBUG_MESA)) {
|
2008-01-31 14:35:25 -07:00
|
|
|
_mesa_print_program(&stfp->Base.Base);
|
2009-10-05 15:50:11 +01:00
|
|
|
debug_printf("\n");
|
|
|
|
}
|
2008-01-31 14:35:25 -07:00
|
|
|
|
2009-10-05 15:50:11 +01:00
|
|
|
if (ST_DEBUG & DEBUG_TGSI) {
|
2009-09-12 14:22:48 -07:00
|
|
|
tgsi_dump( stfp->state.tokens, 0/*TGSI_DUMP_VERBOSE*/ );
|
2009-10-05 15:50:11 +01:00
|
|
|
debug_printf("\n");
|
|
|
|
}
|
2007-09-25 14:22:13 -06:00
|
|
|
}
|
|
|
|
|
2008-11-06 15:00:01 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Debug- print current shader text
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
st_print_shaders(GLcontext *ctx)
|
|
|
|
{
|
|
|
|
struct gl_shader_program *shProg = ctx->Shader.CurrentProgram;
|
|
|
|
if (shProg) {
|
|
|
|
GLuint i;
|
|
|
|
for (i = 0; i < shProg->NumShaders; i++) {
|
|
|
|
printf("GLSL shader %u of %u:\n", i, shProg->NumShaders);
|
|
|
|
printf("%s\n", shProg->Shaders[i]->Source);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|