User Suma - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T07:45:55Zhttp://stackoverflow.com/feeds/user/16673http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1825868/how-to-prevent-window-resizing-temporarily1How to prevent window resizing temporarily?Suma2009-12-01T12:22:30Z2009-12-03T11:41:22Z
<p>I have a window which can be resized, but there are some situations when resizing is not possible because of the application state. Is there a way to prevent resizing the window temporarily?</p>
<p>I want to disable resizing by all means available to the users, which include window menu, dragging edges by mouse, user initiated window tiling performed by OS - and perhaps some other I am not aware of?</p>
http://stackoverflow.com/questions/1826165/wmentersizemove-wmexitsizemove-when-using-menu-not-always-paired0WM_ENTERSIZEMOVE / WM_EXITSIZEMOVE - when using menu, not always pairedSuma2009-12-01T13:23:39Z2009-12-02T18:27:45Z
<p>To prevent my application changing the window content while user is moving its window around, I capture messages <code>WM_ENTERSIZEMOVE</code> / <code>WM_EXITSIZEMOVE</code> and I pause the application between the messages. However, sometimes it happens I receive <code>WM_ENTERSIZEMOVE</code> but no <code>WM_EXITSIZEMOVE</code> at all. One repro is:</p>
<ul>
<li>open the window menu</li>
<li>click on Size</li>
<li>do not resize the window, rather click into the window</li>
</ul>
<p>Notice the window never received any <code>WM_EXITSIZEMOVE</code>.</p>
<p>When checking how this works, I have also checked Microsoft DirectX sample and I have noticed the same problem. Once you follow the repro steps above, the sample application looks frozen (I have tried it just now with BasicHLSL sample from March 2009 SDK).</p>
<p>How is the application expected to respond to this? Are there some other conditions which should terminate the <em>"moving or sizing modal loop"</em>?</p>
http://stackoverflow.com/questions/1826165/wmentersizemove-wmexitsizemove-when-using-menu-not-always-paired/1826361#18263610Answer by Suma for WM_ENTERSIZEMOVE / WM_EXITSIZEMOVE - when using menu, not always pairedSuma2009-12-01T14:00:36Z2009-12-01T14:00:36Z<p>As a temporary workaround, I now un-pause the application whenever I receive WM_ACTIVATE message. This seems to have a kind solved this particular case (you can recover the application by activating it again) and did not seem to break anything.</p>
<p>Such solution smells to me, though. I would rather understand how it should work rather then relying on a limited testing only.</p>
http://stackoverflow.com/questions/1825868/how-to-prevent-window-resizing-temporarily/1825927#18259271Answer by Suma for How to prevent window resizing temporarily?Suma2009-12-01T12:33:22Z2009-12-01T12:40:12Z<p>Following code in the window procedure seems to handle the case of user dragging the window edge/corner:</p>
<pre><code>case WM_SIZING:
RECT &rc = *(LPRECT) lParam;
RECT windowRect;
GetWindowRect(hwnd, &windowRect);
rc = windowRect;
return 0;
</code></pre>
<p>I did not find anything yet to prevent the system from resizing the window when tiling/cascading windows. I hoped following might do the trick, but it seems it does not:</p>
<pre><code>case WM_SIZE:
return TRUE;
</code></pre>
<p>I guess I can find similar measure for other cases, but at least I would need to know the exhaustive list of messages which can result in a window changing its size.</p>
<p>Also, while this really prevents the window from resizing, I would rather prevent the user from even initiating the resize, than apparently letting him to resize and then refusing to do so.</p>
http://stackoverflow.com/questions/167735/fast-pseudo-random-number-generator-for-procedural-content4Fast pseudo random number generator for procedural contentSuma2008-10-03T16:25:35Z2009-11-18T21:21:05Z
<p>I am looking for a pseudo random number generator which would be specialized to work fast when it is given a seed before generating each number. Most generators I have seen so far assume you set seed once and then generate a long sequence of numbers. The only thing which looks somewhat similar to I have seen so far is Perlin Noise, but it generates too "smooth" data - for similar inputs it tends to produce similar results.</p>
<p>The declaration of the generator should look something like:</p>
<pre><code>int RandomNumber1(int seed);
</code></pre>
<p>Or:</p>
<pre><code>int RandomNumber3(int seedX, int seedY, int seedZ);
</code></pre>
<p>I think having good RandomNumber1 should be enough, as it is possible to implement RandomNumber3 by hashing its inputs and passing the result into the RandomNumber1, but I wrote the 2nd prototype in case some implementation could use the independent inputs.</p>
<p>The intended use for this generator is to use it for procedural content generator, like generating a forest by placing trees in a grid and determining a random tree species and random spatial offsets for each location.</p>
<p>The generator needs to be very efficient (below 500 CPU cycles), because the procedural content is created in huge quantities in real time during rendering.</p>
http://stackoverflow.com/questions/1666487/visual-studio-switches-from-disassembler-to-source-each-time-i-step0Visual Studio switches from disassembler to source each time I stepSuma2009-11-03T10:28:19Z2009-11-12T20:02:03Z
<p>On one of my two computers I see following behaviour:</p>
<p>Each time I press F10 (Step over) or F11 (Step Into) in the disassembler window, the focus is switched to the source view, resulting in next F10 / F11 done on the source level unless I switch focus back.</p>
<p>Can anyone recommend me what settings to inspect, or what to try to stay in the disassembler view?</p>
http://stackoverflow.com/questions/1564817/declare-but-not-define-inner-struct-class-legal-c-or-not3Declare but not define inner struct/class - legal C++ or not?Suma2009-10-14T07:42:29Z2009-10-14T08:11:39Z
<p>Is following code legal C++ or not?</p>
<pre><code>class Foo
{
class Bar;
void HaveADrink(Bar &bar);
void PayForDrinks(Bar &bar);
public:
void VisitABar(int drinks);
};
class Foo::Bar
{
public:
int countDrinks;
};
void Foo::HaveADrink(Bar &bar)
{
bar.countDrinks++;
}
void Foo::PayForDrinks(Bar &bar)
{
bar.countDrinks = 0;
}
void Foo::VisitABar(int drinks)
{
Bar bar;
for (int i=0; i<drinks; i++) HaveADrink(bar);
PayForDrinks(bar);
}
</code></pre>
<p>Both Visual C++ and GCC accepts it, however the code seems somewhat strange to me and I would hate to have it refused by some future compiler.</p>
<p>Still, the pattern seems useful to me to reduce compile time dependencies - I often use it to declare structs which are used to pass some "context" (a bunch of variables) which are shared between a few functions which all reside in the same cpp file, and this way I do not have to introduce the "context" definition into the public interface.</p>
http://stackoverflow.com/questions/120033/any-workarounds-for-non-static-member-array-initialization/120084#1200843Answer by Suma for Any workarounds for non-static member array initialization?Suma2008-09-23T09:43:00Z2009-10-13T07:50:06Z<p>One possible workaround is to avoid the compiler calling the OtherClass constructor at all, and to call it on your own using placement new to initialize it whichever way you need. Example:</p>
<pre><code> class Foo
{
private:
char inst[3*sizeof(OtherClass)]; // Array size fixed. OtherClass has no default ctor.
// use Inst to access, not inst
OtherClass &Inst(int i) {return (OtherClass *)inst+i;}
const OtherClass &Inst(int i) const {return (const OtherClass *)inst+i;}
public:
Foo(...)
{
new (Inst(0)) OtherClass(...);
new (Inst(1)) OtherClass(...);
new (Inst(2)) OtherClass(...);
}
~Foo()
{
Inst(0)->~OtherClass();
Inst(1)->~OtherClass();
Inst(2)->~OtherClass();
}
};
</code></pre>
<p>To cater for possible alignment requirements of the OtherClass, you may need to use __declspec(align(x)) if working in VisualC++, or to use a type other than char like:</p>
<pre><code>Type inst[3*(sizeof(OtherClass)+sizeof(Type)-1)/sizeof(Type)];
</code></pre>
<p>... where Type is int, double, long long, or whatever describes the alignment requirements.</p>
http://stackoverflow.com/questions/1421684/converting-float-to-double/1421835#14218353Answer by Suma for Converting float to doubleSuma2009-09-14T14:16:25Z2009-09-14T14:38:55Z<h2>Platform considerations</h2>
<p>This depends on platform used for float computation. With x87 FPU the conversion is free, as the register content is the same - the only price you may sometimes pay is the memory traffic, but in many cases there is even no traffic, as you can simply use the value without any conversion. x87 is actually a strange beast in this respect - it is hard to properly distinguish between floats and doubles on it, as the instructions and registers used are the same, what is different are load/store instructions and computation precision itself is controlled using status bits. Using mixed float/double computations may result in unexpected results (and there are compiler command line options to control exact behaviour and optimization strategies because of this).</p>
<p>When you use SSE (and sometimes Visual Studio uses SSE by default), it may be different, as you may need to transfer the value in the FPU registers or do something explicit to perform the conversion.</p>
<h2>Memory savings performance</h2>
<p>As a summary, and answering to your comment elsewhere: if you want to store results of floating computations into 32b storage, the result will be same speed or faster, because:</p>
<ul>
<li>If you do this on x87, the conversion is free - the only difference will be fstp dword[] will be used instead of fstp qword[].</li>
<li>If you do this with SSE enabled, you may even see some performance gain, as some float computations can be done with SSE once the precision of the computation is only float insteead of default double.</li>
<li>In all cases the memory traffic is lower</li>
</ul>
http://stackoverflow.com/questions/93479/how-to-optimize-an-application-to-make-it-faster-9How to optimize an application to make it faster?Suma2008-09-18T15:16:13Z2009-09-14T08:27:58Z
<p>I have created an application executable, it works, but it runs too slow, a lot slower than needed. I would like to make it faster. What can I do to optimize it?</p>
http://stackoverflow.com/questions/115291/how-much-speed-up-from-converting-3d-maths-to-sse-or-other-simd2How much speed-up from converting 3D maths to SSE or other SIMD?Suma2008-09-22T14:55:20Z2009-09-09T13:38:24Z
<p>I am using 3D maths in my application extensively. How much speed-up can I achieve by converting my vector/matrix library to SSE, AltiVec or a similar SIMD code?</p>
http://stackoverflow.com/questions/1395395/arrays-inside-structs-in-c/1395422#13954226Answer by Suma for Arrays inside structs in CSuma2009-09-08T18:05:03Z2009-09-08T18:10:16Z<p>The concept is while FlashRegion looks like a fixed size structure, it is actually dynamically sized. The magic is done when allocating the structure - instead of calling <code>(FlashRegion*)malloc(sizeof(FlashInfoEx))</code> or <code>new FlashRegion</code>, you call something like <code>(FlashRegion*)malloc(sizeof(FlashInfoEx)+sizeof(FlashRegion)*(numRegions-1))</code></p>
http://stackoverflow.com/questions/709744/how-to-find-a-similar-code-fragment3How to find a similar code fragment?Suma2009-04-02T13:36:12Z2009-08-23T06:28:19Z
<p>Does anyone has some tool or some recommended practice how to find a piece of code which is similar to some other code?</p>
<p>Often I write a function or a code fragment and I remember I have already written something like that before, and I would like to reuse previous implementation, however using plain text search does not reveal anything, as I did not use the variable names which would be exactly the same.</p>
<p>Having similar code fragments leads to unnecessary code duplication, however with a large code base it is impossible to keep all code in memory. Are there any tools which would perform some analysis of the code and marked fragments or functions which are "similar" in terms of functionality?</p>
<p>Consider following examples:</p>
<pre><code> float xDistance = 0, zDistance = 0;
if (camPos.X()<xgMin) xDistance = xgMin-camPos.X();
if (camPos.X()>xgMax) xDistance = camPos.X()-xgMax;
if (camPos.Z()<zgMin) zDistance = zgMin-camPos.Z();
if (camPos.Z()>zgMax) zDistance = camPos.Z()-zgMax;
float dist = sqrt(xDistance*xDistance+zDistance*zDistance);
</code></pre>
<p>and</p>
<pre><code> float distX = 0, distZ = 0;
if (cPos.X()<xgMin) distX = xgMin-cPos.X();
if (cPos.X()>xgMax) distX = cPos.X()-xgMax;
if (cPos.Z()<zgMin) distZ = zgMin-cPos.Z();
if (cPos.Z()>zgMax) distZ = cPos.Z()-zgMax;
float dist = sqrt(distX*distX +distZ*distZ);
</code></pre>
http://stackoverflow.com/questions/115493/how-do-i-convince-my-team-to-drop-sourcesafe-and-move-to-svn/115611#11561142Answer by Suma for How do I convince my team to drop sourcesafe and move to SVN?Suma2008-09-22T15:40:09Z2009-08-04T18:03:48Z<h2>Reliability</h2>
<ul>
<li>SVN is a lot more reliable with large databases</li>
<li>SVN is still actively supported</li>
<li>Atomic commit - in VSS when you get latest version while another user is performing checkin, you can get an inconsistent state, forcing you to repeat the "Get latest version" in better case, but sometimes when unlucky you may be left with a codebase which compiles but does not work. This cannot happen in SVN thanks to atomic commits.</li>
</ul>
<h2>Features</h2>
<ul>
<li>SVN branch/merge is a lot better</li>
<li>SVN has builtin support for remote access</li>
<li>SVN is more configurable (integration of external Diff/Merge tools)</li>
<li>SVN is more extensible (hooks)</li>
</ul>
<h2>Better productivity</h2>
<ul>
<li>SVN "Update" is a <a href="http://stackoverflow.com/questions/239452/performance-in-subversion-vs-sourcesafe/239520#239520">lot faster compared to SS</a> "Get latest version"</li>
<li>SVN command line is a lot easier and cleaner - this is useful for automated build or testing tools</li>
</ul>
<h2>Same level of IDE Integration</h2>
<ul>
<li>VSS had a lot better VS integration until recently, but with <a href="http://ankhsvn.open.collab.net/" rel="nofollow">AnkhSVN 2.0</a> this is no longer true.</li>
</ul>
<h2>Open</h2>
<p>SVN is open and there is plenty of various tools using SVN or cooperating with it. Some examples include:</p>
<ul>
<li>integration with many bug tracker or product cycle management products</li>
<li>shell integration</li>
<li>integration into various products</li>
<li>various management and analysis tools</li>
<li>source is available, you can adjust it to your need, fix the problems (or hire someone to do it for you) should the need arise</li>
</ul>
<h2>Cost</h2>
<ul>
<li>You do not have to pay any license or maintenance fees</li>
</ul>
http://stackoverflow.com/questions/1193141/how-to-make-a-named-pipe-not-busy-after-client-has-disconnected1How to make a named pipe not busy after client has disconnected?Suma2009-07-28T10:04:20Z2009-07-28T10:13:19Z
<p>I use a named pipe and I want to reuse the same pipe on the server to allow connecting another client once the original client has disconnected. What I do is:</p>
<ul>
<li>server creates a pipe using <code>CreateNamedPipe</code></li>
<li>server writes data using <code>WriteFile</code>, and retries doing so as long as error <code>ERROR_PIPE_LISTENING</code> is returned (which is before any client is connected)</li>
<li>clients connects using <code>CreateFile</code></li>
<li>client reads data</li>
<li>client close pipe handle using <code>CloseHandle</code></li>
<li>at this point server gets error <code>ERROR_NO_DATA</code> when it attemps to write more data</li>
<li>server disconnects the pipe using <code>DisconnectNamedPipe</code>, which I hoped should make it free again</li>
<li>server tries writing data, gets error <code>ERROR_PIPE_NOT_CONNECTED</code>, it retries doing so until there is no error</li>
<li>however, when new client connects, and attempts <code>CreateFile</code> on the pipe, it gets <code>ERROR_PIPE_BUSY</code></li>
</ul>
<p>Hence, my question is: what other steps I need to do to disconnect client from the pipe properly so that a new client can connect?</p>
http://stackoverflow.com/questions/1193141/how-to-make-a-named-pipe-not-busy-after-client-has-disconnected/1193181#11931810Answer by Suma for How to make a named pipe not busy after client has disconnected?Suma2009-07-28T10:13:19Z2009-07-28T10:13:19Z<p>Experimenting with various calls, I have found following to work fine:</p>
<ul>
<li><p>in reaction to <code>ERROR_PIPE_NOT_CONNECTED</code>, server performs:</p>
<p>// allow connecting, no wait
DWORD mode = PIPE_NOWAIT;
SetNamedPipeHandleState(_callstackPipe,&mode,NULL,NULL);
ConnectNamedPipe(_callstackPipe,NULL);
mode = PIPE_WAIT;
SetNamedPipeHandleState(_callstackPipe,&mode,NULL,NULL);</p></li>
</ul>
<p><code>ConnectNamedPipe</code> makes the pipe connectable (not busy) again.</p>
<p>Note: pipe state is changed temporarily to <code>PIPE_NOWAIT</code>, as otherwise <code>ConnectNamedPipe</code> blocks the server thread waiting for the client infinitely.</p>
<p>Other solution could probably be to close the handle completely on the server side and open it again.</p>
http://stackoverflow.com/questions/1192537/is-this-code-thread-safe/1192611#11926111Answer by Suma for Is this code thread-safe?Suma2009-07-28T08:16:48Z2009-07-28T08:28:05Z<h2>Concept of local copy</h2>
<blockquote>
<p>I'm thinking about the concept of making a local copy, not the exact piece of code shown here.</p>
</blockquote>
<p>This question cannot be answered without knowing more details. It boils down into the questions if this "making a local copy" of m_lCurrentIndex into lIndex is atomic.</p>
<p>Assuming x86 and assuming m_lCurrentIndex is DWORD aligned and assuming long represents DWORD (which is true on most x86 compilers), then yes, this is atomic. Assuming x64 and assuming long represents DWORD and m_lCurrentIndex is DWORD aligned or long represents 64b word and m_lCurrentIndex is 64b aligned again yes, this is atomic. On other platforms or without the alignment guarantee two or more physical reads may be required for the copy.</p>
<p>Even without local copy being atomic you still may be able to make it lock-less and thread safe using CAS style loop (be optimistic and assume you can do without locking, after doing the operation check if everything went OK, if not, rollback and try again), but it may be a lot more work and the result will be lock-less, but not wait-less.</p>
<h2>Memory barries</h2>
<p>A word of caution: once you will move one step forward, you will most likely be handling multiple variables simultaneously, or handling shared variables which act as pointers or indices to access other shared variables. At that point things will start more and more complicated, as from that point you need to consider things like read / write reordering and memory barriers. See also <a href="http://stackoverflow.com/questions/92455/how-can-i-write-a-lock-free-structure">How can I write a lock free structure</a></p>
http://stackoverflow.com/questions/1166105/some-winapi-to-check-which-process-created-a-named-pipe0Some WinAPI to check which process created a named pipe?Suma2009-07-22T15:28:14Z2009-07-26T22:10:07Z
<p>Is there some WinAPI call which would tell me who (which process) has created the named pipe?</p>
<p><em>Note: Asking this questions, I have a feeling it "smells" somehow, and a proper design will be to communicate the process ID/handle using other means, however getting this information from the pipe itself would be simpler, and therefore if there is such API, I would probably still use it.</em></p>
http://stackoverflow.com/questions/860602/recommended-open-source-profilers/1137133#11371331Answer by Suma for Recommended Open Source ProfilersSuma2009-07-16T12:13:18Z2009-07-23T07:12:16Z<p>From those who have listed, I have found Luke Stackwalker to work best - I liked its GUI, it was easy to get running.</p>
<p>Other similar is <a href="http://www.codersnotes.com/sleepy/" rel="nofollow">Very Sleepy</a> - similar functionality, sampling seems more reliable, GUI perhaps a little bit harder to use (not that graphical).</p>
<p><hr /></p>
<p>After spending some more time with them, I have found one quite important drawback. While both try to sample at 1 ms resolution, in practice they do not achieve it because their sampling method (StackWalk64 of the attached process) is way too slow. For my application it takes something like 5-20 ms to get a callstack. Not only this makes your results imprecise, it also makes them skewed, as short callstacks are walked faster, therefore tend to get more hits.</p>
http://stackoverflow.com/questions/1137341/make-compiler-copy-characters-using-movsd2Make compiler copy characters using movsdSuma2009-07-16T12:48:58Z2009-07-16T14:29:34Z
<p>I would like to copy a relatively short sequence of memory (less than 1 KB, typically 2-200 bytes) in a time critical function. The best code for this on CPU side seems to be <code>rep movsd</code>. However I somehow cannot make my compiler to generate this code. I hoped (and I vaguely remember seeing so) using memcpy would do this using compiler built-in instrinsic, but based on disassembly and debugging it seems compiler is using call to memcpy/memmove library implementation instead. I also hoped the compiler might be smart enough to recognize following loop and use <code>rep movsd</code> on its own, but it seems it does not.</p>
<pre><code>char *dst;
const char *src;
// ...
for (int r=size; --r>=0; ) *dst++ = *src++;
</code></pre>
<p>Is there some way to make the Visual Studio compiler to generate <code>rep movsd</code> sequence other than using inline assembly?</p>
http://stackoverflow.com/questions/1137341/make-compiler-copy-characters-using-movsd/1137515#11375151Answer by Suma for Make compiler copy characters using movsdSuma2009-07-16T13:18:11Z2009-07-16T13:18:11Z<p>What I have found meanwhile:</p>
<p>Compiler will use intrinsic when the copied block size is compile time known. When it is not, is calls the library implementation. When the size is known, the code generated is very nice, selected based on the size. It may be a single mov, or movsd, or movsd followed by movsb, as neeed.</p>
<p>It seems that if I really want to use movsb or movsd always, even with a "dynamic" size I will have to use inline assembly. I know the size is "quite short", but the compiler does not and I cannot communicate this to it - I have even tried to use __assume(size<16), but it is not enough.</p>
<p>Demo code, compile with "-Ob1 (expansion for inline only):</p>
<pre><code> #include <memory.h>
void MemCpyTest(void *tgt, const void *src, size_t size)
{
memcpy(tgt,src,size);
}
template <int size>
void MemCpyTestT(void *tgt, const void *src)
{
memcpy(tgt,src,size);
}
int main ( int argc, char **argv )
{
int src;
int dst;
MemCpyTest(&dst,&src,sizeof(dst));
MemCpyTestT<sizeof(dst)>(&dst,&src);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1121032/detect-if-c-binary-is-optimized/1121523#11215233Answer by Suma for Detect if C++ binary is optimizedSuma2009-07-13T19:19:29Z2009-07-13T19:43:29Z<h2>Possible Heuristics Solution</h2>
<p>If I would be given this task and it would prove it is a resonable task. I would perform "frequency analysis" of the patterns seen in the executable disassembly. As a programmer I am able to distinguish between optimized and unoptimized (debug) code at first glance. I would try to formalize the decision process, with Visual Studio and x86 platform the typical features seen in unoptimized exe would be:</p>
<ul>
<li>functions with full prologue/epilogue (ebp based stack frames)</li>
<li>a lot of mov-s from/into memory (all variables placed in the memory)</li>
</ul>
<p>This is definitely not 100 %, but with longer exe I would exepect the results to be quite reliable.</p>
<p>I assume for other x86 platforms including GCC the rules will be similar, if not the same, and for other platforms similar rules can be found.</p>
<p>Other heuristics like detection runtime library may work as well, depending on compiler settings.</p>
<h2>Task sounds silly</h2>
<p>That sad, I think such task "smells" and under most circumstances it would be sensible to avoid it completely. If you will provide the real reason behind such task, it is very likely some sensible solution will be found.</p>
http://stackoverflow.com/questions/228620/garbage-collection-in-c-why/1121576#11215761Answer by Suma for Garbage Collection in C++ -- why?Suma2009-07-13T19:30:40Z2009-07-13T19:30:40Z<p>There is one property of GC which may be very important in some scenarios. Assignment of pointer is naturally atomic on most platforms, while creating thread-safe reference counted ("smart") pointers is quite hard and introduces significant synchronization overhead. As a result, smart pointers are often told "not to scale well" on multi-core architecture.</p>
http://stackoverflow.com/questions/1031801/c-perform-one-last-action-on-application-crash/1032085#10320850Answer by Suma for C# Perform one last action on application crashSuma2009-06-23T11:53:29Z2009-06-23T11:53:29Z<p>A "normal way for achieving what you're trying" is to make sure your application never crashes.</p>
<p>You can also provide a standalone application which will let system administrator to release any file locks which might be left for whatever reason (power outage, ...). Such application could be used to fix this as well.</p>
http://stackoverflow.com/questions/1012648/can-stretchrect-be-used-with-df24-or-intz-surfaces-can-df24-or-intz-be-multisamp0Can StretchRect be used with DF24 or INTZ surfaces? Can DF24 or INTZ be multisampled?Suma2009-06-18T13:36:22Z2009-06-18T13:47:05Z
<p>Can you StretchRect from a DF24 into another DF24 (ATI specific)?</p>
<p>Can you StretchRect from a INTZ into another INTZ (nVidia specific)?</p>
<p>Can you create DF24 or INTZ as multisampled surfaces?</p>
http://stackoverflow.com/questions/1012648/can-stretchrect-be-used-with-df24-or-intz-surfaces-can-df24-or-intz-be-multisamp/1012713#10127130Answer by Suma for Can StretchRect be used with DF24 or INTZ surfaces? Can DF24 or INTZ be multisampled?Suma2009-06-18T13:47:05Z2009-06-18T13:47:05Z<p>It seems it cannot be multisampled:</p>
<p>Sources:</p>
<p><a href="http://discussms.hosting.lsoft.com/SCRIPTS/WA-MSD.EXE?A2=ind0801D&L=DIRECTXDEV&P=10986" rel="nofollow">http://discussms.hosting.lsoft.com/SCRIPTS/WA-MSD.EXE?A2=ind0801D&L=DIRECTXDEV&P=10986</a></p>
<blockquote>
<p>i'm using RAWZ
now i'v ran my app on laptop witch winXP and 8600go ... and all seems to
be fine
forceware version is that same for vista desktop and my laptop (differs by
operating system ofcouse)
strange ...</p>
<p>The other thing that warps my mind is that the solution works only witch
nonmultisampled depth buffers witch suxx.</p>
</blockquote>
<p><a href="http://forum.beyond3d.com/showthread.php?t=53918" rel="nofollow">http://forum.beyond3d.com/showthread.php?t=53918</a></p>
<blockquote>
<p>But, there is a huge problem -> MultiSampling does NOT work !</p>
<p>I need to turn off MultiSampling to bind the 'depthStencil_Surface' with my 'renderTarget' </p>
</blockquote>
<p>If multisampling is not possible, I am not that much interested in StretchRect-ing it anyway. I wanted to use StretchRect to Resolve multisampled data.</p>
http://stackoverflow.com/questions/1009691/can-assignment-be-done-before-constructor-is-called2Can assignment be done before constructor is called?Suma2009-06-17T21:46:09Z2009-06-17T22:22:10Z
<p>A comment to <a href="http://stackoverflow.com/questions/945232/whats-wrong-with-this-fix-for-double-checked-locking">http://stackoverflow.com/questions/945232/whats-wrong-with-this-fix-for-double-checked-locking</a> says:</p>
<blockquote>
<p>The issue is that the variable may be
assigned before the constructor is run
(or completes), not before the object
is allocated.</p>
</blockquote>
<p>Let us consider code:</p>
<pre><code>A *a;
void Test()
{
a = new A;
}
</code></pre>
<p>To allow for more formal analysis, let us split the a = new A into several operations:</p>
<pre><code>void *mem = malloc(sizeof(A)); // Allocation
new(mem) A; // Constructor
a = reinterpret_cast<A *>(mem); // Assignment
</code></pre>
<p>Is the comment quoted above true, and if it is, in what sense? Can Constructor be executed after the Assignment? If it can, what can be done against it when guaranteed order is needed because of MT safety?</p>
http://stackoverflow.com/questions/1009691/can-assignment-be-done-before-constructor-is-called/1009773#10097731Answer by Suma for Can assignment be done before constructor is called?Suma2009-06-17T22:07:06Z2009-06-17T22:07:06Z<p>I think following should work:</p>
<pre><code>void Test()
{
A *temp = new A;
MemoryWriteBarrier(); // use whatever memory barrier your platform offers
a = temp;
}
</code></pre>
http://stackoverflow.com/questions/1000303/is-there-a-faster-way-to-detect-object-type-at-runtime-than-using-dynamiccast/1001107#10011071Answer by Suma for Is there a faster way to detect object type at runtime than using dynamic_cast?Suma2009-06-16T12:17:44Z2009-06-16T12:26:32Z<p>Standard dynamic_cast is very flexible, but usually very slow, as it handles many corners cases you are probably not interested about. If you use single inheritances, you can replace it with a simple implementation based on virtual functions.</p>
<p>Example implementation:</p>
<pre><code>// fast dynamic cast
//! Fast dynamic cast declaration
/*!
Place USE_CASTING to class that should be recnognized by dynamic casting.
Do not forget do use DEFINE_CASTING near class definition.
*\note Function dyn_cast is fast and robust when used correctly.
Each class that should be used as target for dyn_cast
must use USE_CASTING and DEFINE_CASTING macros.\n
Forgetting to do so may lead to incorrect program execution,
because class may be sharing _classId with its parent and IsClassId
will return true for both parent and derived class, making impossible'
to distinguish between them.
*/
#define USE_CASTING(baseType) \
public: \
static int _classId; \
virtual size_t dyn_sizeof() const {return sizeof(*this);} \
bool IsClassId( const int *t ) const \
{ \
if( &_classId==t ) return true; \
return baseType::IsClassId(t); \
}
//! Fast dynamic cast root declaration
/*!
Place USE_CASTING_ROOT to class that should act as
root of dynamic casting hierarchy
*/
#define USE_CASTING_ROOT \
public: \
static int _classId; \
virtual size_t dyn_sizeof() const {return sizeof(*this);} \
virtual bool IsClassId( const int *t ) const { return ( &_classId==t ); }
//! Fast dynamic cast definition
#define DEFINE_CASTING(Type) \
int Type::_classId;
template <class To,class From>
To *dyn_cast( From *from )
{
if( !from ) return NULL;
if( from->IsClassId(&To::_classId) )
{
assert(dynamic_cast<To *>(from));
return static_cast<To *>(from);
}
return NULL;
}
</code></pre>
<p>That said, I complete agree with others dynamic_cast is suspicious and you will most often be able to achieve the same goal in a lot cleaner way. That said, similiar to goto, there may be some cases where it can be really useful and more readable.</p>
<p>Another note: if you say the classes in question are out of your control, this solution will not help you, as it requires you to modify the classes (not much, just just add a few lines, but you need to modify them). If this is really the case, you need to use what the language offers, that is dynamic_cast and typeinfo.</p>
http://stackoverflow.com/questions/537650/direct3d9ex-and-direct3d10-resource-sharing/845747#8457470Answer by Suma for Direct3D9ex and Direct3D10 resource sharingSuma2009-05-10T17:54:09Z2009-06-11T16:32:50Z<p>You can share Direct3D9 resources between devices or processes.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb219800%28VS.85%29.aspx#Sharing%5FResources" rel="nofollow">Feature Summary (Direct3D 9 for Windows Vista) - Sharing Resources</a></p>
<p>Similar technique works for Direct3D10 resources (you also specify the sharing handle).</p>
<p>This <a href="http://www.gamedev.net/community/forums/topic.asp?topic%5Fid=533082" rel="nofollow">GameDev.net topic</a> discusses sharing between D3D9Ex and D3D10 in detail. The conclusions in that topic seems to be that while based on documentation it should be possible (with some limitations), in practice it does not work at all (perhaps the restrictions are that severe they prevent any practical usage scenario?)</p>
http://stackoverflow.com/questions/1826165/wmentersizemove-wmexitsizemove-when-using-menu-not-always-paired/1828546#1828546Comment by Suma on WM_ENTERSIZEMOVE / WM_EXITSIZEMOVE - when using menu, not always pairedSuma2009-12-02T07:16:14Z2009-12-02T07:16:14ZThe problem is with the repro steps given there is no sizing operation at all. The sizing modal loop is entered, but sizing is never really started.http://stackoverflow.com/questions/1825868/how-to-prevent-window-resizing-temporarily/1825930#1825930Comment by Suma on How to prevent window resizing temporarily?Suma2009-12-01T13:05:48Z2009-12-01T13:05:48ZGreat. Removing WS_SIZEBOX from the style, setting the new style with SetWindowLong disabled the resizing completely. To be safe, after calling SetWindowLong I update the window using AdjustWindowRectEx / SetWindowPlacement / SetWindowPos / RedrawWindow.http://stackoverflow.com/questions/1666487/visual-studio-switches-from-disassembler-to-source-each-time-i-stepComment by Suma on Visual Studio switches from disassembler to source each time I stepSuma2009-11-13T10:50:21Z2009-11-13T10:50:21ZIt happens in C++ x86 native. I have tried C# now and it does not happen there.http://stackoverflow.com/questions/1666487/visual-studio-switches-from-disassembler-to-source-each-time-i-step/1717688#1717688Comment by Suma on Visual Studio switches from disassembler to source each time I stepSuma2009-11-13T10:48:12Z2009-11-13T10:48:12ZFor the record: the answer was auto-accepted by the bounty system, it does not work.http://stackoverflow.com/questions/1666487/visual-studio-switches-from-disassembler-to-source-each-time-i-step/1724980#1724980Comment by Suma on Visual Studio switches from disassembler to source each time I stepSuma2009-11-12T20:44:04Z2009-11-12T20:44:04ZWhy? This does not make any sense to me. While debugging in disassembly, it is normal to have source and symbol information displayed together with the disassembly. This is not a problem (actually this is important for efficient debugging). The problem is switching to source window from unknown reason. While it is possible removing pdbs would really prevent any source being used, this is not what I am for.http://stackoverflow.com/questions/1666487/visual-studio-switches-from-disassembler-to-source-each-time-i-step/1723027#1723027Comment by Suma on Visual Studio switches from disassembler to source each time I stepSuma2009-11-12T16:37:50Z2009-11-12T16:37:50ZDid not work (I saw no idea why it should, but being desperate, I have tried it anyway)http://stackoverflow.com/questions/1666487/visual-studio-switches-from-disassembler-to-source-each-time-i-step/1718613#1718613Comment by Suma on Visual Studio switches from disassembler to source each time I stepSuma2009-11-12T15:36:48Z2009-11-12T15:36:48ZNice idea, however does not work. Even when I close the source window, it is open again once I press F10/F11.http://stackoverflow.com/questions/1666487/visual-studio-switches-from-disassembler-to-source-each-time-i-step/1694055#1694055Comment by Suma on Visual Studio switches from disassembler to source each time I stepSuma2009-11-07T19:08:54Z2009-11-07T19:08:54ZI have this option turned on. Thanks for trying, though.http://stackoverflow.com/questions/1666487/visual-studio-switches-from-disassembler-to-source-each-time-i-step/1691195#1691195Comment by Suma on Visual Studio switches from disassembler to source each time I stepSuma2009-11-07T18:41:28Z2009-11-07T18:41:28ZCopying setting files sound like a nice idea. Perhaps you can create a separate answer for that, or edit this answer, so that if it works I can accept it? Once I will be trying it, I will also compare the settings file, perhaps I will find the difference this way.http://stackoverflow.com/questions/1666487/visual-studio-switches-from-disassembler-to-source-each-time-i-step/1691195#1691195Comment by Suma on Visual Studio switches from disassembler to source each time I stepSuma2009-11-07T18:24:10Z2009-11-07T18:24:10ZThe keys work, the problem is after they perform their action, the focus changes to source window.http://stackoverflow.com/questions/1679554/how-to-prevent-wmkeydown-processing-once-corresponding-press-is-processed-via-wmComment by Suma on How to prevent WM_KEYDOWN processing once corresponding press is processed via WM_SYSKEYDOWNSuma2009-11-05T10:21:46Z2009-11-05T10:21:46ZDeleting because question is wrong, WM_KEYDOWN does not arive, problem lies elsewhere in my code.http://stackoverflow.com/questions/1679554/how-to-prevent-wmkeydown-processing-once-corresponding-press-is-processed-via-wmComment by Suma on How to prevent WM_KEYDOWN processing once corresponding press is processed via WM_SYSKEYDOWNSuma2009-11-05T10:07:31Z2009-11-05T10:07:31ZAn alternative would be do detect the combination right in the WM_KEYDOWN. However, I do not see a reliable way to detect the Alt status at the time of the message origin at that place.http://stackoverflow.com/questions/1564817/declare-but-not-define-inner-struct-class-legal-c-or-not/1564861#1564861Comment by Suma on Declare but not define inner struct/class - legal C++ or not?Suma2009-10-14T08:12:44Z2009-10-14T08:12:44ZThanks, I have fixed the code. A comment to the question would suffice instead of the answer now, I guess. I suggest you either update or delete the answer now, as it is no longer relevant with the fixed questions.http://stackoverflow.com/questions/92455/how-can-i-write-a-lock-free-structure/106811#106811Comment by Suma on How can I write a lock free structure?Suma2009-09-23T17:20:55Z2009-09-23T17:20:55ZAt the "concurrentlinkedhashmap" there is an interesting comment written now:
Note: A rare race condition was uncovered by Greg Luck (Ehcache). This algorithm is deprecated.
I guess this shows what to expect when developing lock free data on your own.http://stackoverflow.com/questions/1421684/converting-float-to-doubleComment by Suma on Converting float to doubleSuma2009-09-14T14:40:34Z2009-09-14T14:40:34ZPlease, specify the platform. Is this Windows on x86 (Win32) or x64 (Win64)? Or PPC, or perhaps some embedded plarform? The question is not answerable without knowing the platform.