mirror of
https://github.com/bulletphysics/bullet3.git
synced 2026-09-24 11:14:38 +00:00
moved Extras/BulletMultiThreaded to src/BulletMultiThreaded (build systems will be updated soon)
12 lines
165 B
C
12 lines
165 B
C
#ifndef __PPU_ADDRESS_SPACE_H
|
|
#define __PPU_ADDRESS_SPACE_H
|
|
|
|
#ifdef USE_ADDR64
|
|
typedef uint64_t ppu_address_t;
|
|
#else
|
|
typedef uint32_t ppu_address_t;
|
|
#endif
|
|
|
|
#endif
|
|
|