Odd resizing issue present across all plugins created with iPlug2

I am using SKIA graphics and the CPU. In FL Studio, the plugin lags and resizes itself upon opening the UI. I am using the same graphics settings as AnalogObsession and I haven’t noticed any issues with his stuff. I know that this isn’t a lot to work off of, I’m not sure if there is some obvious solution that I haven’t seen yet. I can get a video if needed. Thanks!

I have also had issues with FL Studio: https://iplug2.discourse.group/t/lots-of-posts-on-this-forum-about-issues-with-fl-studio/488

I know you’re reporting a graphics issue but it also seems the VST “specs” in general are loosely followed by some DAWs (FL, Ardour, etc). How else do we explain plugins that work perfectly everywhere else except DAW “X”?

Unfortunately, that’s where the need for “if (GetHost() == such and such)” comes in. Some plugin manufacturers (like Fabfilter) must have a ton of such conditional coding because their plugins seem to work everywhere.

I ran it as a standalone plugin and it did the same thing. It’s probably something on my end, I just wanted to make sure this wasn’t a known issue with an easy fix I wasn’t seeing.

Edit: Changing this (IGraphicsWin.cpp):

if (!GetCapture()) // workaround Windows issues with window sizing during mouse move
  {
    float scale = GetScaleForHWND(mPlugWnd);
    if (scale != GetScreenScale())
      SetScreenScale(scale);
  }

to this:

  if (!GetCapture()) // workaround Windows issues with window sizing during mouse move
  {
    //float scale = GetScaleForHWND(mPlugWnd);
    //if (scale != GetScreenScale())
    //  SetScreenScale(scale);
  }

works. I don’t know why except that it isn’t resizing the screen in the event loop.

Just found that this code is also seriously lagging the window on my laptop screen. It works fine on my external monitor however. Dragging around the window on my laptop screen causes the window to slowly respond to my cursor moving it.

If I remove this code, resizing does not seem to be an option. @olilarkin any ideas on how to fix this?

I should add that I am using Skia on the CPU. Running using OpenGL2 does not lag, but is sometimes unstable (and I would like to stick to CPU rendering). Thanks!

Just my experience - I found CPU rendering very slow on my Intel i5 desktop and stopped using it the first time I tried it. I have been using NanoVG and OpenGL2 for everything (both Mac and PC) and have not had any UI issues reported with either old machines or new, including M1. YMMV