mirror of
https://github.com/bloeys/physx-go.git
synced 2025-12-29 07:58:20 +00:00
11 lines
411 B
Go
Executable File
11 lines
411 B
Go
Executable File
package pgo
|
|
|
|
type PvdInstrumentationFlag uint32
|
|
|
|
const (
|
|
PvdInstrumentationFlag_eDEBUG PvdInstrumentationFlag = 1 << 0
|
|
PvdInstrumentationFlag_ePROFILE PvdInstrumentationFlag = 1 << 1
|
|
PvdInstrumentationFlag_eMEMORY PvdInstrumentationFlag = 1 << 2
|
|
PvdInstrumentationFlag_eALL PvdInstrumentationFlag = (PvdInstrumentationFlag_eDEBUG | PvdInstrumentationFlag_ePROFILE | PvdInstrumentationFlag_eMEMORY)
|
|
)
|