diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2007-07-31 04:59:03 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2007-07-31 04:59:03 +0000 |
| commit | df4f56b2b0a5343fb40cc749b24897f239c76be7 (patch) | |
| tree | f324668f9b4c718649db29b6c7f9025bf115d309 /apps/plugins/lib/fixedpoint.h | |
| parent | 4e8b171fc4cc3b62a1656ae67e92944ff855dcd3 (diff) | |
| download | rockbox-df4f56b2b0a5343fb40cc749b24897f239c76be7.zip rockbox-df4f56b2b0a5343fb40cc749b24897f239c76be7.tar.gz rockbox-df4f56b2b0a5343fb40cc749b24897f239c76be7.tar.bz2 rockbox-df4f56b2b0a5343fb40cc749b24897f239c76be7.tar.xz | |
plugins code cleanup : moved the duplicated fixed point table loockup based sinus/cosinus functions to fixedpoint.c, removed the bmp size definition in the clock.c|-(useless as the size is already defined in a .h generated with every bitmaps ...)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14087 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/fixedpoint.h')
| -rw-r--r-- | apps/plugins/lib/fixedpoint.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/lib/fixedpoint.h b/apps/plugins/lib/fixedpoint.h index ff773cb..c587989 100644 --- a/apps/plugins/lib/fixedpoint.h +++ b/apps/plugins/lib/fixedpoint.h @@ -21,4 +21,5 @@ long fsincos(unsigned long phase, long *cos); long fsqrt(long a, unsigned int fracbits); - +long cos_int(int val); +long sin_int(int val); |