Jump to content

Slow work with desktop on Windows 10 - (Moved)


eXskill
 Share

Recommended Posts

Will the libraries be used to work with the desktop environment in Windows 10? In Windus 7 it was enough to turn off the aero for fast work PixelGetColor, PixelSeach. In Windows 10, the number of requests is limited by the screen frequency. Look at the example below.

While 1
$i=0
Local $so = TimerInit()
While TimerDiff($so)<1001
$neuron_0001=PixelSearch(0,0,0,0,0xBBBBBB)
$neuron_0002=PixelSearch(1,0,1,0,0xBBBBBB)
$neuron_0003=PixelSearch(2,0,2,0,0xBBBBBB)
$neuron_0004=PixelSearch(3,0,3,0,0xBBBBBB)
$neuron_0005=PixelSearch(4,0,4,0,0xBBBBBB)
$i=$i+1
Wend
$ops=Round($i, -1)
ConsoleWrite(@CRLF & "Operations per second: " & $ops)
WEnd

OTR951a.gif

In Windows 8, 10, it is not possible to disable screen rendering using GPU. Therefore, we can make a maximum of 60-70 requests per second.

Thanks to Autotoit developers for your work! You are best.

Edited by eXskill
Link to comment
Share on other sites

I ran your code on three machine, Win10, Win8.1 and Win7, and got nearly identical results on all three. Unless there's more to your test than the screenshot shows, I don't see an issue.

 

BTW, don't post pictures of code, post the code. Screenshots are just ridiculous when dealing with text.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

The whole problem is in a function that uses the library gdi32.dll:

Func _WinAPI_BitBlt($hDestDC, $iXDest, $iYDest, $iWidth, $iHeight, $hSrcDC, $iXSrc, $iYSrc, $iROP)
    Local $aResult = DllCall("gdi32.dll", "bool", "BitBlt", "handle", $hDestDC, "int", $iXDest, "int", $iYDest, "int", $iWidth, _
            "int", $iHeight, "handle", $hSrcDC, "int", $iXSrc, "int", $iYSrc, "dword", $iROP)
    If @error Then Return SetError(@error, @extended, False)

    Return $aResult[0]
EndFunc

Using it in the code, with Window's Aero enabled in Windows 7 or Windows 10, results in a sharp drop in performance.

This problem has long been discussed. The best solution will be the use of DXGI. I have little experience to implement. But the developer can solve it only. Let's hope and wait.

 

Edited by eXskill
Link to comment
Share on other sites

  • 4 weeks later...
  • Developers
6 hours ago, eXskill said:

For a month, not a single sentence. Sadly ...

...and your point is that you have been silent or is this a shuttle way of telling us we aren't helping you?

Maybe this is not so much an AutoIt3 issue as you are simple doing a DLL call?

Jos

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • Developers
1 hour ago, eXskill said:

But this is not a solution to the problem.

Let us know when you do solve it.

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • 1 year later...
  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...