| 963 | |
| 964 | template <ColorTransformEnum transform> |
| 965 | ImageEffect* |
| 966 | ColorTransformPluginFactory<transform>::createInstance(OfxImageEffectHandle handle, |
| 967 | ContextEnum /*context*/) |
| 968 | { |
| 969 | return new ColorTransformPlugin<transform>(handle); |
| 970 | } |
| 971 | |
| 972 | // RGBtoHSV |
| 973 | static ColorTransformPluginFactory<eColorTransformRGBToHSV> p1(kPluginRGBToHSVIdentifier, kPluginVersionMajor, kPluginVersionMinor); |
nothing calls this directly
no outgoing calls
no test coverage detected