Lines Matching defs:dst
170 const struct tgsi_full_dst_register *dst )
172 TXT(tgsi_file_name(dst->Register.File));
173 if (dst->Register.Dimension) {
174 if (dst->Dimension.Indirect) {
176 TXT(tgsi_file_name(dst->DimIndirect.File));
178 SID( dst->DimIndirect.Index );
180 ENM( dst->DimIndirect.Swizzle, tgsi_swizzle_names );
181 if (dst->Dimension.Index != 0) {
182 if (dst->Dimension.Index > 0)
184 SID( dst->Dimension.Index );
187 if (dst->DimIndirect.ArrayID) {
189 SID( dst->DimIndirect.ArrayID );
194 SID(dst->Dimension.Index);
198 if (dst->Register.Indirect) {
200 TXT(tgsi_file_name(dst->Indirect.File));
202 SID( dst->Indirect.Index );
204 ENM( dst->Indirect.Swizzle, tgsi_swizzle_names );
205 if (dst->Register.Index != 0) {
206 if (dst->Register.Index > 0)
208 SID( dst->Register.Index );
211 if (dst->Indirect.ArrayID) {
213 SID( dst->Indirect.ArrayID );
218 SID( dst->Register.Index );
576 const struct tgsi_full_dst_register *dst = &inst->Dst[i];
582 _dump_register_dst( ctx, dst );
583 _dump_writemask( ctx, dst->Register.WriteMask );