Add PostProcess enum

This commit is contained in:
bloeys
2021-11-19 09:03:35 +04:00
parent 8bf9dc9121
commit fb9d44beca
3 changed files with 39 additions and 2 deletions

View File

@ -52,7 +52,7 @@ type Scene struct {
Cameras []*Camera
}
func ImportFile(file string, postProcessFlags uint) (*Scene, error) {
func ImportFile(file string, postProcessFlags PostProcess) (*Scene, error) {
cstr := C.CString(file)
defer C.free(unsafe.Pointer(cstr))