Home | History | Annotate | Download | only in tgsi

Lines Matching refs:decl

105       struct tgsi_full_declaration *decl = &ctx->FullToken.FullDeclaration;
107 memset(decl, 0, sizeof *decl);
108 copy_token(&decl->Declaration, &token);
110 next_token( ctx, &decl->Range );
112 if (decl->Declaration.Dimension) {
113 next_token(ctx, &decl->Dim);
116 if( decl->Declaration.Interpolate ) {
117 next_token( ctx, &decl->Interp );
120 if( decl->Declaration.Semantic ) {
121 next_token( ctx, &decl->Semantic );
124 if (decl->Declaration.File == TGSI_FILE_IMMEDIATE_ARRAY) {
126 decl->ImmediateData.u = (union tgsi_immediate_data*)
128 for (i = 0; i <= decl->Range.Last; ++i) {
135 if (decl->Declaration.File == TGSI_FILE_RESOURCE) {
136 next_token(ctx, &decl->Resource);
139 if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
140 next_token(ctx, &decl->SamplerView);