Hello guys

Hello guys,
I built a FMX Windows app from scratch, I have never seen a Delphi app running on Windows 10, but something got wrong and it is flickering a lot, when I interact with a control, the background get black and normal, normal and black and so on, at the same time other controls are weird rendered :(
My Windows 10 is the 10.10.10240 build
Thanks :D


Comments

  1. Horácio Filho Try to check with DirectX and GDI+ canvas

    ReplyDelete
  2. Try this:

      FMX.Types.GlobalUseDirect2D := False; // avoid bug with AMD Dual Graphics
      Application.Initialize;
      <...>

    ReplyDelete
  3. N. Pravdin I use a NVIDIA Optimus GeForce GT630M card, will it solve my problem too? Thanks :D

    ReplyDelete
  4. Horácio Filho
    Maybe. But note that this may reduce the performance of your application.

    ReplyDelete

Post a Comment