pcb-to-stencil/svg_render_other.go

12 lines
262 B
Go

//go:build !darwin
package main
import "image"
// renderSVGNative is a no-op on non-macOS platforms.
// Returns nil, causing callers to fall back to Fyne's built-in renderer.
func renderSVGNative(svgData []byte, width, height int) image.Image {
return nil
}