diff options
author | Kostis Sagonas <[email protected]> | 2010-02-13 10:13:46 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-02-16 13:24:55 +0100 |
commit | f2592e6ef6bd6179d45884794d722e8cb551d1aa (patch) | |
tree | d945c9bb65badffa4c32074ee2ec124bd8960234 /lib/percept/src/egd.hrl | |
parent | c12397f937d450d885ca6ec44d53ef34ff8788f4 (diff) | |
download | otp-f2592e6ef6bd6179d45884794d722e8cb551d1aa.tar.gz otp-f2592e6ef6bd6179d45884794d722e8cb551d1aa.tar.bz2 otp-f2592e6ef6bd6179d45884794d722e8cb551d1aa.zip |
percept: Modernize types and specs
Diffstat (limited to 'lib/percept/src/egd.hrl')
-rw-r--r-- | lib/percept/src/egd.hrl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/percept/src/egd.hrl b/lib/percept/src/egd.hrl index 450c6620cf..2e8f5ebc50 100644 --- a/lib/percept/src/egd.hrl +++ b/lib/percept/src/egd.hrl @@ -16,9 +16,9 @@ %% %% %CopyrightEnd% --type(rgba_float() :: {float(), float(), float(), float()}). --type(rgba_byte() :: {byte(), byte(), byte(), byte()}). --type(rgb() :: {byte(), byte(), byte()}). +-type rgba_float() :: {float(), float(), float(), float()}. +-type rgba_byte() :: {byte(), byte(), byte(), byte()}. +-type rgb() :: {byte(), byte(), byte()}. -record(image_object, { type, |