Files
ffmpeg-gui/internal/gpu/gpu_other.go
T
2026-07-29 10:46:19 +08:00

13 lines
185 B
Go

//go:build !windows
package gpu
type gpuName struct {
Name string
Vendor string
}
func detectGPUNames() []gpuName {
return []gpuName{{Name: "Default GPU", Vendor: "unknown"}}
}