2009-03-30 23:54:53 -07:00
|
|
|
/*
|
|
|
|
* Copyright 2009 Corbin Simpson <MostAwesomeDude@gmail.com>
|
2009-11-26 19:37:58 +01:00
|
|
|
* Copyright 2009 Marek Olšák <maraeo@gmail.com>
|
2009-03-30 23:54:53 -07:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* on 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
|
|
|
|
* THE AUTHOR(S) AND/OR THEIR 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. */
|
|
|
|
|
2009-06-26 01:08:13 +02:00
|
|
|
#include "r300_vs.h"
|
2009-12-24 16:05:44 +01:00
|
|
|
#include "r300_fs.h"
|
2009-03-30 23:54:53 -07:00
|
|
|
|
2009-07-27 20:23:49 +02:00
|
|
|
#include "r300_context.h"
|
2009-11-26 19:37:58 +01:00
|
|
|
#include "r300_screen.h"
|
2009-07-27 20:23:49 +02:00
|
|
|
#include "r300_tgsi_to_rc.h"
|
2009-11-26 19:37:58 +01:00
|
|
|
#include "r300_reg.h"
|
2009-03-30 23:54:53 -07:00
|
|
|
|
2009-07-27 20:23:49 +02:00
|
|
|
#include "tgsi/tgsi_dump.h"
|
|
|
|
#include "tgsi/tgsi_parse.h"
|
2009-04-04 22:57:45 -07:00
|
|
|
|
2009-07-27 20:23:49 +02:00
|
|
|
#include "radeon_compiler.h"
|
2009-05-09 00:38:07 -07:00
|
|
|
|
2009-12-24 03:10:33 +01:00
|
|
|
#include "util/u_math.h"
|
|
|
|
|
2009-11-26 19:37:58 +01:00
|
|
|
/* Convert info about VS output semantics into r300_shader_semantics. */
|
|
|
|
static void r300_shader_read_vs_outputs(
|
|
|
|
struct tgsi_shader_info* info,
|
|
|
|
struct r300_shader_semantics* vs_outputs)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
unsigned index;
|
|
|
|
|
|
|
|
r300_shader_semantics_reset(vs_outputs);
|
|
|
|
|
|
|
|
for (i = 0; i < info->num_outputs; i++) {
|
|
|
|
index = info->output_semantic_index[i];
|
|
|
|
|
|
|
|
switch (info->output_semantic_name[i]) {
|
|
|
|
case TGSI_SEMANTIC_POSITION:
|
|
|
|
assert(index == 0);
|
|
|
|
vs_outputs->pos = i;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TGSI_SEMANTIC_PSIZE:
|
|
|
|
assert(index == 0);
|
|
|
|
vs_outputs->psize = i;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TGSI_SEMANTIC_COLOR:
|
|
|
|
assert(index <= ATTR_COLOR_COUNT);
|
|
|
|
vs_outputs->color[index] = i;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TGSI_SEMANTIC_BCOLOR:
|
|
|
|
assert(index <= ATTR_COLOR_COUNT);
|
|
|
|
vs_outputs->bcolor[index] = i;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TGSI_SEMANTIC_GENERIC:
|
|
|
|
assert(index <= ATTR_GENERIC_COUNT);
|
|
|
|
vs_outputs->generic[index] = i;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TGSI_SEMANTIC_FOG:
|
|
|
|
assert(index == 0);
|
|
|
|
vs_outputs->fog = i;
|
|
|
|
break;
|
|
|
|
|
2009-12-19 00:18:43 +01:00
|
|
|
case TGSI_SEMANTIC_EDGEFLAG:
|
|
|
|
assert(index == 0);
|
|
|
|
fprintf(stderr, "r300 VP: cannot handle edgeflag output\n");
|
|
|
|
assert(0);
|
|
|
|
break;
|
2009-11-26 19:37:58 +01:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-24 16:05:44 +01:00
|
|
|
static void r300_shader_vap_output_fmt(struct r300_vertex_shader* vs)
|
2009-11-26 19:37:58 +01:00
|
|
|
{
|
2009-12-24 16:05:44 +01:00
|
|
|
struct r300_shader_semantics* vs_outputs = &vs->outputs;
|
|
|
|
uint32_t* hwfmt = vs->hwfmt;
|
2009-11-26 19:37:58 +01:00
|
|
|
int i, gen_count;
|
2009-12-19 23:55:34 +01:00
|
|
|
boolean any_bcolor_used = vs_outputs->bcolor[0] != ATTR_UNUSED ||
|
|
|
|
vs_outputs->bcolor[1] != ATTR_UNUSED;
|
2009-11-26 19:37:58 +01:00
|
|
|
|
|
|
|
/* Do the actual vertex_info setup.
|
|
|
|
*
|
|
|
|
* vertex_info has four uints of hardware-specific data in it.
|
|
|
|
* vinfo.hwfmt[0] is R300_VAP_VTX_STATE_CNTL
|
|
|
|
* vinfo.hwfmt[1] is R300_VAP_VSM_VTX_ASSM
|
|
|
|
* vinfo.hwfmt[2] is R300_VAP_OUTPUT_VTX_FMT_0
|
|
|
|
* vinfo.hwfmt[3] is R300_VAP_OUTPUT_VTX_FMT_1 */
|
|
|
|
|
|
|
|
hwfmt[0] = 0x5555; /* XXX this is classic Mesa bonghits */
|
|
|
|
|
|
|
|
/* Position. */
|
|
|
|
if (vs_outputs->pos != ATTR_UNUSED) {
|
|
|
|
hwfmt[1] |= R300_INPUT_CNTL_POS;
|
|
|
|
hwfmt[2] |= R300_VAP_OUTPUT_VTX_FMT_0__POS_PRESENT;
|
|
|
|
} else {
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Point size. */
|
|
|
|
if (vs_outputs->psize != ATTR_UNUSED) {
|
|
|
|
hwfmt[2] |= R300_VAP_OUTPUT_VTX_FMT_0__PT_SIZE_PRESENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Colors. */
|
|
|
|
for (i = 0; i < ATTR_COLOR_COUNT; i++) {
|
2010-01-17 04:49:07 +01:00
|
|
|
if (vs_outputs->color[i] != ATTR_UNUSED || any_bcolor_used ||
|
|
|
|
vs_outputs->color[1] != ATTR_UNUSED) {
|
2009-11-26 19:37:58 +01:00
|
|
|
hwfmt[1] |= R300_INPUT_CNTL_COLOR;
|
|
|
|
hwfmt[2] |= R300_VAP_OUTPUT_VTX_FMT_0__COLOR_0_PRESENT << i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-19 23:55:34 +01:00
|
|
|
/* Back-face colors. */
|
|
|
|
if (any_bcolor_used) {
|
|
|
|
for (i = 0; i < ATTR_COLOR_COUNT; i++) {
|
|
|
|
hwfmt[1] |= R300_INPUT_CNTL_COLOR;
|
|
|
|
hwfmt[2] |= R300_VAP_OUTPUT_VTX_FMT_0__COLOR_0_PRESENT << (2+i);
|
|
|
|
}
|
|
|
|
}
|
2009-11-26 19:37:58 +01:00
|
|
|
|
|
|
|
/* Texture coordinates. */
|
|
|
|
gen_count = 0;
|
|
|
|
for (i = 0; i < ATTR_GENERIC_COUNT; i++) {
|
|
|
|
if (vs_outputs->generic[i] != ATTR_UNUSED) {
|
|
|
|
hwfmt[1] |= (R300_INPUT_CNTL_TC0 << gen_count);
|
|
|
|
hwfmt[3] |= (4 << (3 * gen_count));
|
|
|
|
gen_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fog coordinates. */
|
|
|
|
if (vs_outputs->fog != ATTR_UNUSED) {
|
|
|
|
hwfmt[1] |= (R300_INPUT_CNTL_TC0 << gen_count);
|
|
|
|
hwfmt[3] |= (4 << (3 * gen_count));
|
|
|
|
gen_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX magic */
|
|
|
|
assert(gen_count <= 8);
|
2009-12-24 16:05:44 +01:00
|
|
|
|
|
|
|
/* WPOS. */
|
|
|
|
vs->wpos_tex_output = gen_count;
|
2009-11-26 19:37:58 +01:00
|
|
|
}
|
|
|
|
|
2009-12-09 00:45:18 +01:00
|
|
|
/* Sets up stream mapping to equivalent VS outputs if TCL is bypassed
|
|
|
|
* or isn't present. */
|
|
|
|
static void r300_stream_locations_notcl(
|
2009-11-26 19:37:58 +01:00
|
|
|
struct r300_shader_semantics* vs_outputs,
|
2009-12-09 00:45:18 +01:00
|
|
|
int* stream_loc)
|
2009-11-26 19:37:58 +01:00
|
|
|
{
|
|
|
|
int i, tabi = 0, gen_count;
|
2009-12-19 23:55:34 +01:00
|
|
|
boolean any_bcolor_used = vs_outputs->bcolor[0] != ATTR_UNUSED ||
|
|
|
|
vs_outputs->bcolor[1] != ATTR_UNUSED;
|
2009-11-26 19:37:58 +01:00
|
|
|
|
|
|
|
/* Position. */
|
2009-12-09 00:45:18 +01:00
|
|
|
stream_loc[tabi++] = 0;
|
2009-11-26 19:37:58 +01:00
|
|
|
|
|
|
|
/* Point size. */
|
|
|
|
if (vs_outputs->psize != ATTR_UNUSED) {
|
2009-12-09 00:45:18 +01:00
|
|
|
stream_loc[tabi++] = 1;
|
2009-11-26 19:37:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Colors. */
|
|
|
|
for (i = 0; i < ATTR_COLOR_COUNT; i++) {
|
2010-01-17 04:49:07 +01:00
|
|
|
if (vs_outputs->color[i] != ATTR_UNUSED || any_bcolor_used ||
|
|
|
|
vs_outputs->color[1] != ATTR_UNUSED) {
|
2009-12-09 00:45:18 +01:00
|
|
|
stream_loc[tabi++] = 2 + i;
|
2009-11-26 19:37:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Back-face colors. */
|
2009-12-19 23:55:34 +01:00
|
|
|
if (any_bcolor_used) {
|
|
|
|
for (i = 0; i < ATTR_COLOR_COUNT; i++) {
|
2009-12-09 00:45:18 +01:00
|
|
|
stream_loc[tabi++] = 4 + i;
|
2009-11-26 19:37:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Texture coordinates. */
|
|
|
|
gen_count = 0;
|
|
|
|
for (i = 0; i < ATTR_GENERIC_COUNT; i++) {
|
2009-12-25 17:09:21 +01:00
|
|
|
if (vs_outputs->generic[i] != ATTR_UNUSED) {
|
2009-11-26 19:37:58 +01:00
|
|
|
assert(tabi < 16);
|
2009-12-09 00:45:18 +01:00
|
|
|
stream_loc[tabi++] = 6 + gen_count;
|
2009-11-26 19:37:58 +01:00
|
|
|
gen_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fog coordinates. */
|
|
|
|
if (vs_outputs->fog != ATTR_UNUSED) {
|
|
|
|
assert(tabi < 16);
|
2009-12-09 00:45:18 +01:00
|
|
|
stream_loc[tabi++] = 6 + gen_count;
|
2009-11-26 19:37:58 +01:00
|
|
|
gen_count++;
|
|
|
|
}
|
|
|
|
|
2009-12-24 03:10:33 +01:00
|
|
|
/* WPOS. */
|
|
|
|
if (vs_outputs->wpos != ATTR_UNUSED) {
|
|
|
|
assert(tabi < 16);
|
|
|
|
stream_loc[tabi++] = 6 + gen_count;
|
|
|
|
gen_count++;
|
|
|
|
}
|
|
|
|
|
2009-11-26 19:37:58 +01:00
|
|
|
for (; tabi < 16;) {
|
2009-12-09 00:45:18 +01:00
|
|
|
stream_loc[tabi++] = -1;
|
2009-11-26 19:37:58 +01:00
|
|
|
}
|
|
|
|
}
|
2009-04-04 22:57:45 -07:00
|
|
|
|
2009-07-27 20:23:49 +02:00
|
|
|
static void set_vertex_inputs_outputs(struct r300_vertex_program_compiler * c)
|
2009-04-25 16:53:38 -07:00
|
|
|
{
|
2009-07-27 20:23:49 +02:00
|
|
|
struct r300_vertex_shader * vs = c->UserData;
|
2009-11-27 10:19:20 +01:00
|
|
|
struct r300_shader_semantics* outputs = &vs->outputs;
|
2009-04-25 16:53:38 -07:00
|
|
|
struct tgsi_shader_info* info = &vs->info;
|
2009-11-27 10:19:20 +01:00
|
|
|
int i, reg = 0;
|
2009-12-19 23:55:34 +01:00
|
|
|
boolean any_bcolor_used = outputs->bcolor[0] != ATTR_UNUSED ||
|
|
|
|
outputs->bcolor[1] != ATTR_UNUSED;
|
2009-04-25 16:53:38 -07:00
|
|
|
|
2009-07-27 20:23:49 +02:00
|
|
|
/* Fill in the input mapping */
|
|
|
|
for (i = 0; i < info->num_inputs; i++)
|
|
|
|
c->code->inputs[i] = i;
|
|
|
|
|
2009-11-27 10:19:20 +01:00
|
|
|
/* Position. */
|
|
|
|
if (outputs->pos != ATTR_UNUSED) {
|
|
|
|
c->code->outputs[outputs->pos] = reg++;
|
|
|
|
} else {
|
|
|
|
assert(0);
|
2009-04-25 16:53:38 -07:00
|
|
|
}
|
2009-05-17 10:33:56 -07:00
|
|
|
|
2009-11-27 10:19:20 +01:00
|
|
|
/* Point size. */
|
|
|
|
if (outputs->psize != ATTR_UNUSED) {
|
|
|
|
c->code->outputs[outputs->psize] = reg++;
|
|
|
|
}
|
2009-07-27 20:23:49 +02:00
|
|
|
|
2009-12-19 23:55:34 +01:00
|
|
|
/* If we're writing back facing colors we need to send
|
|
|
|
* four colors to make front/back face colors selection work.
|
|
|
|
* If the vertex program doesn't write all 4 colors, lets
|
|
|
|
* pretend it does by skipping output index reg so the colors
|
|
|
|
* get written into appropriate output vectors.
|
|
|
|
*/
|
|
|
|
|
2009-11-27 10:19:20 +01:00
|
|
|
/* Colors. */
|
|
|
|
for (i = 0; i < ATTR_COLOR_COUNT; i++) {
|
|
|
|
if (outputs->color[i] != ATTR_UNUSED) {
|
|
|
|
c->code->outputs[outputs->color[i]] = reg++;
|
2010-01-17 04:49:07 +01:00
|
|
|
} else if (any_bcolor_used ||
|
|
|
|
outputs->color[1] != ATTR_UNUSED) {
|
2009-12-19 23:55:34 +01:00
|
|
|
reg++;
|
2009-11-27 10:19:20 +01:00
|
|
|
}
|
|
|
|
}
|
2009-07-27 20:23:49 +02:00
|
|
|
|
2009-12-19 23:55:34 +01:00
|
|
|
/* Back-face colors. */
|
|
|
|
for (i = 0; i < ATTR_COLOR_COUNT; i++) {
|
|
|
|
if (outputs->bcolor[i] != ATTR_UNUSED) {
|
|
|
|
c->code->outputs[outputs->bcolor[i]] = reg++;
|
|
|
|
} else if (any_bcolor_used) {
|
|
|
|
reg++;
|
|
|
|
}
|
|
|
|
}
|
2009-07-27 20:23:49 +02:00
|
|
|
|
2009-11-27 10:19:20 +01:00
|
|
|
/* Texture coordinates. */
|
|
|
|
for (i = 0; i < ATTR_GENERIC_COUNT; i++) {
|
|
|
|
if (outputs->generic[i] != ATTR_UNUSED) {
|
|
|
|
c->code->outputs[outputs->generic[i]] = reg++;
|
2009-03-30 23:54:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-27 10:19:20 +01:00
|
|
|
/* Fog coordinates. */
|
|
|
|
if (outputs->fog != ATTR_UNUSED) {
|
|
|
|
c->code->outputs[outputs->fog] = reg++;
|
|
|
|
}
|
2009-12-24 03:10:33 +01:00
|
|
|
|
|
|
|
/* WPOS. */
|
|
|
|
if (outputs->wpos != ATTR_UNUSED) {
|
|
|
|
c->code->outputs[outputs->wpos] = reg++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void r300_insert_wpos(struct r300_vertex_program_compiler* c,
|
|
|
|
struct r300_shader_semantics* outputs)
|
|
|
|
{
|
|
|
|
int i, lastOutput = 0;
|
|
|
|
|
|
|
|
/* Find the max output index. */
|
|
|
|
lastOutput = MAX2(lastOutput, outputs->psize);
|
|
|
|
for (i = 0; i < ATTR_COLOR_COUNT; i++) {
|
|
|
|
lastOutput = MAX2(lastOutput, outputs->color[i]);
|
|
|
|
lastOutput = MAX2(lastOutput, outputs->bcolor[i]);
|
|
|
|
}
|
|
|
|
for (i = 0; i < ATTR_GENERIC_COUNT; i++) {
|
|
|
|
lastOutput = MAX2(lastOutput, outputs->generic[i]);
|
|
|
|
}
|
|
|
|
lastOutput = MAX2(lastOutput, outputs->fog);
|
|
|
|
|
|
|
|
/* Set WPOS after the last output. */
|
|
|
|
lastOutput++;
|
|
|
|
rc_copy_output(&c->Base, 0, lastOutput); /* out[lastOutput] = out[0]; */
|
|
|
|
outputs->wpos = lastOutput;
|
2009-07-27 20:23:49 +02:00
|
|
|
}
|
2009-03-30 23:54:53 -07:00
|
|
|
|
2009-07-27 20:23:49 +02:00
|
|
|
void r300_translate_vertex_shader(struct r300_context* r300,
|
|
|
|
struct r300_vertex_shader* vs)
|
|
|
|
{
|
|
|
|
struct r300_vertex_program_compiler compiler;
|
|
|
|
struct tgsi_to_rc ttr;
|
2009-04-05 01:32:55 -07:00
|
|
|
|
2009-11-26 19:37:58 +01:00
|
|
|
/* Initialize. */
|
|
|
|
r300_shader_read_vs_outputs(&vs->info, &vs->outputs);
|
|
|
|
|
2009-07-27 20:23:49 +02:00
|
|
|
/* Setup the compiler */
|
|
|
|
rc_init(&compiler.Base);
|
|
|
|
|
2009-09-06 15:03:51 +02:00
|
|
|
compiler.Base.Debug = DBG_ON(r300, DBG_VP);
|
2009-07-27 20:23:49 +02:00
|
|
|
compiler.code = &vs->code;
|
|
|
|
compiler.UserData = vs;
|
|
|
|
|
|
|
|
if (compiler.Base.Debug) {
|
|
|
|
debug_printf("r300: Initial vertex program\n");
|
|
|
|
tgsi_dump(vs->state.tokens, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Translate TGSI to our internal representation */
|
|
|
|
ttr.compiler = &compiler.Base;
|
|
|
|
ttr.info = &vs->info;
|
|
|
|
|
|
|
|
r300_tgsi_to_rc(&ttr, vs->state.tokens);
|
|
|
|
|
2009-12-24 16:05:44 +01:00
|
|
|
compiler.RequiredOutputs = ~(~0 << (vs->info.num_outputs+1));
|
2009-07-27 20:23:49 +02:00
|
|
|
compiler.SetHwInputOutput = &set_vertex_inputs_outputs;
|
|
|
|
|
2009-12-24 03:10:33 +01:00
|
|
|
/* Insert the WPOS output. */
|
2009-12-24 16:05:44 +01:00
|
|
|
r300_insert_wpos(&compiler, &vs->outputs);
|
2009-12-24 03:10:33 +01:00
|
|
|
|
2009-12-24 16:05:44 +01:00
|
|
|
r300_shader_vap_output_fmt(vs);
|
2009-12-24 03:10:33 +01:00
|
|
|
r300_stream_locations_notcl(&vs->outputs, vs->stream_loc_notcl);
|
|
|
|
|
2009-07-27 20:23:49 +02:00
|
|
|
/* Invoke the compiler */
|
|
|
|
r3xx_compile_vertex_program(&compiler);
|
|
|
|
if (compiler.Base.Error) {
|
2009-12-09 00:45:18 +01:00
|
|
|
/* XXX We should fallback using Draw. */
|
2009-07-27 20:23:49 +02:00
|
|
|
fprintf(stderr, "r300 VP: Compiler error\n");
|
|
|
|
abort();
|
|
|
|
}
|
2009-07-22 23:58:35 -07:00
|
|
|
|
|
|
|
/* And, finally... */
|
2009-07-27 20:23:49 +02:00
|
|
|
rc_destroy(&compiler.Base);
|
2009-07-22 23:58:35 -07:00
|
|
|
vs->translated = TRUE;
|
2009-03-30 23:54:53 -07:00
|
|
|
}
|
2009-12-24 16:05:44 +01:00
|
|
|
|
|
|
|
boolean r300_vertex_shader_setup_wpos(struct r300_context* r300)
|
|
|
|
{
|
|
|
|
struct r300_vertex_shader* vs = r300->vs;
|
|
|
|
int tex_output = r300->vs->wpos_tex_output;
|
|
|
|
uint32_t tex_fmt = R300_INPUT_CNTL_TC0 << tex_output;
|
|
|
|
uint32_t* hwfmt = vs->hwfmt;
|
|
|
|
|
|
|
|
if (r300->fs->inputs.wpos != ATTR_UNUSED) {
|
|
|
|
/* Enable WPOS in VAP. */
|
|
|
|
if (!(hwfmt[1] & tex_fmt)) {
|
|
|
|
hwfmt[1] |= tex_fmt;
|
|
|
|
hwfmt[3] |= (4 << (3 * tex_output));
|
|
|
|
|
|
|
|
assert(tex_output < 8);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Disable WPOS in VAP. */
|
|
|
|
if (hwfmt[1] & tex_fmt) {
|
|
|
|
hwfmt[1] &= ~tex_fmt;
|
|
|
|
hwfmt[3] &= ~(4 << (3 * tex_output));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|