scale_clip_test.def 855 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. autogen definitions scale_clip_test.tpl;
  2. float_type = {
  3. float_type_name = "float" ;
  4. float_short_name = "flt" ;
  5. float_upper_name = "FLOAT" ;
  6. float_to_int = "lrintf" ;
  7. } ;
  8. float_type = {
  9. float_type_name = "double" ;
  10. float_short_name = "dbl" ;
  11. float_upper_name = "DOUBLE" ;
  12. float_to_int = "lrint" ;
  13. } ;
  14. int_type = {
  15. int_type_name = "short" ;
  16. int_short_name = "s" ;
  17. int_max_value = 0x7FFFF ;
  18. } ;
  19. int_type = {
  20. int_type_name = "int" ;
  21. int_short_name = "i" ;
  22. int_max_value = 0x7FFFFFFF ;
  23. } ;
  24. data_type = {
  25. name = "16" ;
  26. bit_count = 16 ;
  27. error_val = "1.0 / 0x8000" ;
  28. } ;
  29. data_type = {
  30. name = "24" ;
  31. bit_count = 24 ;
  32. error_val = "1.0 / 0x800000" ;
  33. } ;
  34. data_type = {
  35. name = "32" ;
  36. bit_count = 32 ;
  37. error_val = "1.0 / 0x80000000" ;
  38. } ;
  39. data_type = {
  40. name = "08" ;
  41. bit_count = 8 ;
  42. error_val = "1.0 / 0x80" ;
  43. } ;