eXskill Posted February 13, 2018 Posted February 13, 2018 (edited) 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 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 February 18, 2018 by eXskill
BrewManNH Posted February 13, 2018 Posted February 13, 2018 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 GudeHow 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
eXskill Posted February 14, 2018 Author Posted February 14, 2018 (edited) 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 February 18, 2018 by eXskill
eXskill Posted March 18, 2018 Author Posted March 18, 2018 For a month, not a single sentence. Sadly ...
Developers Jos Posted March 18, 2018 Developers Posted March 18, 2018 (edited) 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 March 18, 2018 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.
eXskill Posted March 18, 2018 Author Posted March 18, 2018 In Windows 10, I found a way to achieve a performance of 20,000 operations per second. For this, I had to close the DWM process. Method: Windows 10 Aero Basic theme by disabling DWM.exe in Windows 10 But this is not a solution to the problem.
Developers Jos Posted March 18, 2018 Developers Posted March 18, 2018 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.
eXskill Posted March 20, 2018 Author Posted March 20, 2018 Forums are needed to jointly solve the problem, and not conduct monologue.
Mysticdrew Posted December 17, 2019 Posted December 17, 2019 I made this post 3 years ago which has a possible solution.
eXskill Posted December 28, 2019 Author Posted December 28, 2019 On 12/18/2019 at 6:51 AM, Mysticdrew said: I made this post 3 years ago which has a possible solution. Thanks for the advice. Yes, I have long been using FastFind. But I hope that someone can write a library for Windows 10 😃
Developers Jos Posted December 28, 2019 Developers Posted December 28, 2019 Moved to the appropriate forum. Moderation Team 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now