Click here to Skip to main content
15,909,332 members

Comments by kgg124 (Top 7 by date)

kgg124 13-Dec-18 18:44pm View    
Thank you for your reply.
Could you please explain more?

I referred the link, but it doesn't work.
(https://stackoverflow.com/questions/22772758/gdi-and-animatewindow)

Could you please provide me the sample code or link?

Thank you :)
kgg124 21-Feb-17 4:14am View    
Thank you!
The tip you gave me was very useful.

The problem was solved by referring to the links.
http://stackoverflow.com/questions/32945410/sse2-intrinsics-comparing-unsigned-integers

Thank you!
kgg124 30-Aug-16 19:39pm View    
Thank you for the reply.
You mean call the 'UpdateWindow' at main dialog?
For example,

m_pwndLB->ShowWindow(SW_SHOW); //m_pwndLB is LisBox pointer.
GetParent()->UpdateWindow();

It works well! Thank you! :)
kgg124 12-Apr-16 5:25am View    
Thank you for your reply.
So.. Can not do this 'memcpy(data,__m128i.m128i_u8,8)' ?

I am trying to sobel filter image by using SSE operations now.
How can I make processed image data?

I have been using 'memcpy', and it works well..
kgg124 11-Apr-16 20:06pm View    
Thank you for your reply.
I tried to as following on my Question2.

for(int k=0;k<8; k++)
{
result.m128i_i8[k] = sum_tot.m128i_i16[k];
}

It works well. But so slow..
Is other good way?