formatd.inc 831 B

12345678910111213141516171819
  1. { setup }
  2. Function ptc_format_create : TPTC_FORMAT;
  3. Function ptc_format_create_indexed(bits : Integer) : TPTC_FORMAT;
  4. Function ptc_format_create_direct(bits : Integer; r, g, b, a : int32) : TPTC_FORMAT;
  5. Procedure ptc_format_destroy(obj : TPTC_FORMAT);
  6. { data access }
  7. Function ptc_format_r(obj : TPTC_FORMAT) : int32;
  8. Function ptc_format_g(obj : TPTC_FORMAT) : int32;
  9. Function ptc_format_b(obj : TPTC_FORMAT) : int32;
  10. Function ptc_format_a(obj : TPTC_FORMAT) : int32;
  11. Function ptc_format_bits(obj : TPTC_FORMAT) : Integer;
  12. Function ptc_format_bytes(obj : TPTC_FORMAT) : Integer;
  13. Function ptc_format_direct(obj : TPTC_FORMAT) : Boolean;
  14. Function ptc_format_indexed(obj : TPTC_FORMAT) : Boolean;
  15. { operators }
  16. Procedure ptc_format_assign(obj, format : TPTC_FORMAT);
  17. Function ptc_format_equals(obj, format : TPTC_FORMAT) : Boolean;