Ferenc Pintér
Ferenc Pintér
Your welcome. I have to cleanup the source and make proper commits but I think only next week. Until then comments are welcome.
I'm trying not to differ too much from VS version. Choosing any number is not a good choice either. Maybe a "defined" or "default" option would help while keep things...
mt_lut w/ frameprops. Yes, only realtime. But it is then not a lut any more.
Updated to Intel 2024.1
There is a change log at the end of the the internal html help, probably there can be historical comments on why it is used. Do you think it takes...
Actually it scatters the 12 byte (int mvx, mvy, sad) into 20 bytes (x,y,mvx,mvy,sad) ``` ?Update@FakePlaneOfBlocks@@QEAAXPEBH@Z PROC ; FakePlaneOfBlocks::Update, COMDAT ; 65 : for ( int i = 0; i...
I see, but I cannot explain it other than it is a glitch in measurement method, or there is a lock or some other big overhead somewhere in between.
Yes, there is a criticalsection (mutex) there ``` bool FakeGroupOfPlanes::Update(const int *array, int data_size) { //::EnterCriticalSection (&cs); std::lock_guard lock(cs); ```
Now the question is: why is it guarded, I suppose it is put there for a good reason.
That part is quick. r8+14h is the target's 20 byte size. rax + 0ch is the 12 byte size of a source unit. Simple 32 bit read-writes. Cannot make it...