Janilabo

Untitled

Mar 30th, 2013
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.56 KB | None | 0 0
  1. function MSSL_ColorSettings(CTS, sensitivity: Integer; hueModifier, saturationModifier: Extended): MSSL_TColorSettings;
  2. {==============================================================================]  
  3.   Created: December 19th, 2012.
  4.   Contributors: Janilabo
  5.   Explanation: Converts parameters to MSSL_TColorSettings type.
  6. [==============================================================================}
  7. begin
  8.   Result.CTS := CTS;
  9.   Result.sensitivity := sensitivity;
  10.   Result.hueModifier := hueModifier;
  11.   Result.saturationModifier := saturationModifier;
  12. end;
Advertisement
Add Comment
Please, Sign In to add comment