mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 07:18:17 +02:00
print vertex input mapping
This commit is contained in:
parent
5bd119f943
commit
54c5262eaf
1 changed files with 6 additions and 0 deletions
|
|
@ -49,6 +49,12 @@ st_print_current(void)
|
|||
{
|
||||
GET_CURRENT_CONTEXT(ctx);
|
||||
struct st_context *st = ctx->st;
|
||||
int i;
|
||||
|
||||
printf("Vertex Transform Inputs:\n");
|
||||
for (i = 0; i < st->state.vs->state.num_inputs; i++) {
|
||||
printf(" Slot %d: VERT_ATTRIB_%d\n", i, st->vp->index_to_input[i]);
|
||||
}
|
||||
|
||||
tgsi_dump( st->state.vs->state.tokens, 0 );
|
||||
if (st->vp->Base.Base.Parameters)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue