Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tgsi_dump.h 699B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #if !defined TGSI_DUMP_H
  2. #define TGSI_DUMP_H
  3. #if defined __cplusplus
  4. extern "C" {
  5. #endif
  6. #define TGSI_DUMP_VERBOSE 1
  7. #define TGSI_DUMP_NO_IGNORED 2
  8. #define TGSI_DUMP_NO_DEFAULT 4
  9. void
  10. tgsi_dump(
  11. const struct tgsi_token *tokens,
  12. unsigned flags );
  13. struct tgsi_full_immediate;
  14. struct tgsi_full_instruction;
  15. struct tgsi_full_declaration;
  16. void
  17. tgsi_dump_immediate(
  18. const struct tgsi_full_immediate *imm );
  19. void
  20. tgsi_dump_instruction(
  21. const struct tgsi_full_instruction *inst,
  22. unsigned instno );
  23. void
  24. tgsi_dump_declaration(
  25. const struct tgsi_full_declaration *decl );
  26. #if defined __cplusplus
  27. }
  28. #endif
  29. #endif /* TGSI_DUMP_H */