mirror of
https://github.com/halpz/re3.git
synced 2025-05-11 15:26:38 +03:00
added CMBlur
This commit is contained in:
parent
ee5088b3e1
commit
852d8298b1
9 changed files with 301 additions and 7 deletions
|
@ -25,17 +25,12 @@ void operator delete(void *ptr) noexcept { gtadelete(ptr); }
|
|||
unsigned __int64 myrand_seed = 1;
|
||||
|
||||
int
|
||||
myps2rand(void)
|
||||
myrand(void)
|
||||
{
|
||||
myrand_seed = 0x5851F42D4C957F2D * myrand_seed + 1;
|
||||
return ((myrand_seed >> 32) & 0x7FFFFFFF);
|
||||
}
|
||||
|
||||
int myrand(void)
|
||||
{
|
||||
return myps2rand();
|
||||
}
|
||||
|
||||
void
|
||||
mysrand(unsigned int seed)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue