~ubuntu-branches/ubuntu/maverick/blender/maverick

« back to all changes in this revision

Viewing changes to source/blender/blenlib/BLI_rand.h

  • Committer: Bazaar Package Importer
  • Author(s): Khashayar Naderehvandi, Khashayar Naderehvandi, Alessio Treglia
  • Date: 2009-01-22 16:53:59 UTC
  • mfrom: (14.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090122165359-v0996tn7fbit64ni
Tags: 2.48a+dfsg-1ubuntu1
[ Khashayar Naderehvandi ]
* Merge from debian experimental (LP: #320045), Ubuntu remaining changes:
  - Add patch correcting header file locations.
  - Add libvorbis-dev and libgsm1-dev to Build-Depends.
  - Use avcodec_decode_audio2() in source/blender/src/hddaudio.c

[ Alessio Treglia ]
* Add missing previous changelog entries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * @file BLI_rand.h
3
3
 * 
4
4
 * Random number functions.
5
 
 * $Id: BLI_rand.h 14444 2008-04-16 22:40:48Z hos $
 
5
 * $Id: BLI_rand.h 16168 2008-08-18 11:09:27Z genscher $
6
6
 *
7
7
 * ***** BEGIN GPL LICENSE BLOCK *****
8
8
 *
44
44
void            rng_free                (struct RNG* rng);
45
45
 
46
46
void            rng_seed                (struct RNG* rng, unsigned int seed);
 
47
void rng_srandom(struct RNG *rng, unsigned int seed);
47
48
int                     rng_getInt              (struct RNG* rng);
48
49
double          rng_getDouble   (struct RNG* rng);
49
50
float           rng_getFloat    (struct RNG* rng);