c++ Programming Glossary: resizes
Windows C++ dialog resizer class http://stackoverflow.com/questions/144583/windows-c-dialog-resizer-class Keil has a good one DlgResizeHelper which basically resizes everything by a set ratio but I'm looking for something smarter...
Good C++ array class for dealing with large arrays of data in a fast and memory efficient way? http://stackoverflow.com/questions/2472944/good-c-array-class-for-dealing-with-large-arrays-of-data-in-a-fast-and-memory straight malloc or HeapAlloc and takes 1 second. The deque resizes took 950MB originally and then slowly started dropping back...
fatal error C1014: too many include files : depth = 1024 http://stackoverflow.com/questions/2582521/fatal-error-c1014-too-many-include-files-depth-1024 false mTimer.start return 0 WM_SIZE is sent when the user resizes the window. case WM_SIZE Save the new client area dimensions...
Why is D3D10SDKLayers.dll loaded during my DX11 game? http://stackoverflow.com/questions/8934374/why-is-d3d10sdklayers-dll-loaded-during-my-dx11-game methods below 3 DXGISwapChain ResizeTarget frontBufferDesc resizes front buffer to specified res 4 DXGISwapChain GetFullscreenState.. fullscreen 6 ResizeDXGIBuffers width height TRUE my method resizes back buffer sub method below 7 DXGISwapChain ResizeBuffers count.. methods below 3 DXGISwapChain ResizeTarget backBufferDesc resizes front buffer to specified res 4 DXGISwapChain GetFullscreenState..
|