Package mtl provides access to Apple's Metal API (https://developer.apple.com/documentation/metal).
(...)
This package is in very early stages of development. The API will change when opportunities for improvement are discovered; it is not yet frozen. Less than 20% of the Metal API surface is implemented. Current functionality is sufficient to render very basic geometry.
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/aaa96093-696e-469a-895e-9cb99c82fc58n%40googlegroups.com.
go mod why golang.org/x/exp/shiny
go: downloading golang.org/x/exp v0.0.0-20190731235908-ec7cb31e5a56
(main module does not need package golang.org/x/exp/shiny)
Hi,
It seems there might be a misunderstanding regarding the go mod why command. Please note that any transitive dependencies will not be displayed in the output. For instance, x/exp/shiny could be a transitive dependency of a direct dependency in your main module, which is why you see the message "(main module does not need package golang.org/x/exp/shiny)."
To understand why dmitri.shuralyov.com/gpu/mtl is used by x/mobile, I recommend checking the source code of both x/mobile and x/exp/shiny.
Xudong