pureGoProcessor is the default no-cgo Processor. Constructed via NewProcessor — the package exposes a single constructor so callers don't need to know which backend they got at compile time. The libvips equivalent in `processor_libvips.go` (a future Phase 2 file) will provide the same NewProcessor s
| 31 | // will provide the same NewProcessor signature behind the libvips |
| 32 | // build tag. |
| 33 | type pureGoProcessor struct { |
| 34 | caps Capabilities |
| 35 | } |
| 36 | |
| 37 | // NewProcessor returns the Processor compiled into this binary. Pure-Go |
| 38 | // build → pureGoProcessor. libvips build → vipsProcessor (Phase 2). |
nothing calls this directly
no outgoing calls
no test coverage detected