diff options
author | Dan Gudmundsson <[email protected]> | 2015-12-03 14:42:09 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2015-12-03 16:21:50 +0100 |
commit | 80483dcb40c382e38405204370dfac7a8b6513aa (patch) | |
tree | 54958cf339de6e909434aa1f5e25552cb8b95eb1 /lib/wx/src/gen/glu.erl | |
parent | f0ab82279fa6fc7c91d9b3c193d1890b7c83e39b (diff) | |
download | otp-80483dcb40c382e38405204370dfac7a8b6513aa.tar.gz otp-80483dcb40c382e38405204370dfac7a8b6513aa.tar.bz2 otp-80483dcb40c382e38405204370dfac7a8b6513aa.zip |
wx: Fix some function specifications
Diffstat (limited to 'lib/wx/src/gen/glu.erl')
-rw-r--r-- | lib/wx/src/gen/glu.erl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/wx/src/gen/glu.erl b/lib/wx/src/gen/glu.erl index 6a6e20b3e4..5faba48930 100644 --- a/lib/wx/src/gen/glu.erl +++ b/lib/wx/src/gen/glu.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2013. All Rights Reserved. +%% Copyright Ericsson AB 2008-2015. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -51,10 +51,14 @@ -define(GLint64,64/native-signed). -type vertex() :: {float(), float(), float()}. -type enum() :: non_neg_integer(). %% See wx/include/gl.hrl or glu.hrl --type matrix() :: {float(),float(),float(),float(), +-type matrix12() :: {float(),float(),float(),float(), + float(),float(),float(),float(), + float(),float(),float(),float()}. +-type matrix16() :: {float(),float(),float(),float(), float(),float(),float(),float(), float(),float(),float(),float(), float(),float(),float(),float()}. +-type matrix() :: matrix12() | matrix16(). -type mem() :: binary() | tuple(). %% Memory block -export([tesselate/2,build1DMipmapLevels/9,build1DMipmaps/6,build2DMipmapLevels/10, |