Showing results for March 2014 - C++ Team Blog

Mar 25, 2014
0
0

Linker Enhancements in Visual Studio 2013 Update 2 CTP2

Eric Battalio
Eric Battalio

For developer scenarios, linking takes the lion's share of the application's build time. From our investigation we know that the Visual C++ linker spends a large fraction of its time in preparing, merging and finally writing out debug information. This is especially true for non-Whole Program Optimization scenarios. In Visual Studio 2013 Update 2 ...

C++
Mar 21, 2014
0
0

DirectX 12

Eric Battalio
Eric Battalio

For Friday, how about more information about DirectX 12 announced at GDC earlier this week?DirectX 12 introduces the next version of Direct3D, the graphics API at the heart of DirectX. Direct3D is one of the most critical pieces of a game or game engine, and we've redesigned it to be faster and more efficient than ever before. Direct3D 12 enables r...

C++
Mar 18, 2014
0
0

cppcon registration open!

Eric Battalio
Eric Battalio

From cppcon:Registration is now open for CppCon 2014 to be held September 7–12, 2014 at the Meydenbauer Center in Bellevue, Washington, USA. The conference will start with the keynote by Bjarne Stroustrup titled "Make Simple Tasks Simple!"This is a full five-day conference, and in this first year the CppCon organizers are shooting for 50...

C++
Mar 7, 2014
0
0

A Case of the Twitters

Eric Battalio
Eric Battalio

Do you watch the Twitterverse for interesting stuff about C++, development, life, the universe and everything? We do and in today's post share some recent Tweets that crossed our (@visualc) path: And for those of you at the SCSW conference:Join @Microsoft at @sxsw. Drop on by for events, meetups, parties & more http://spr.ly/60115C3l [M...

C++
Mar 5, 2014
0
0

Shrink my Program Database (PDB) file

Ankit Asthana
Ankit Asthana

Overview PDB's (Program Database file), PDB stands for Program Database, a proprietary file format (developed by Microsoft) for storing debugging information about a program (or, commonly, binaries such as a DLL or EXE). PDB files commonly have a .pdb extension. A PDB file is typically created from source files du...

C++