Jump to content

  • Log In with Google      Sign In   
  • Create Account

Awesome job so far everyone! Please give us your feedback on how our article efforts are going. We still need more finished articles for our May contest theme: Remake the Classics

Washu

Member Since 24 Mar 2001
Offline Last Active May 17 2013 12:28 AM
*****

Journal Entries

There is no escape from the Washu > Oh God, It gets even worse!

Posted 07 June 2012

So if you saw my last entry, it was a basic Win32 app that created a D3D11 device and cleared the display.

Well, I've expanded upon it a wee bit more. If you're familiar with the SlimDX MiniTri11 sample this should look, erm... similar?

Added...


There is no escape from the Washu > When Boredom Strikes

Posted 04 June 2012

Washu does crazy things. In this case I wrote this up...


.586
.model flat, stdcall
option casemap :none

@ArgRev MACRO arglist:REQ
LOCAL txt, arg
txt TEXTEQU <>
% FOR arg, <arglist>
txt CATSTR <arg>, <,>, txt
ENDM

txt SUBSTR txt, 1, @SizeStr( %txt ) - 1
txt CATSTR <!<>, txt,...


There is no escape from the Washu > The New C++ - functions

Posted 15 March 2012

C++11 significantly expanded the C++ standard library with a number of new libraries and functionality, which isn’t actually all that new if you’ve used boost. These libraries add a great deal of needed functionality, although it still doesn’t compare to the standard library you get with many other languages.

Two of the new extensions to the standard...


There is no escape from the Washu > The New C++ - lambdas

Posted 06 March 2012

Ah lambdas. If you’ve used any functional languages, python, ruby, or C# (or many other languages), you are probably familiar with the concept of lambdas. However, if you’ve been doing C++ for a while and haven’t used boost’s lambda library then let me be the first to introduce you to the concept… A lambda is, essentially, an unnamed (or...


There is no escape from the Washu > The New C++, Part 2 - decltype

Posted 01 March 2012

Working with templates is annoying. Working with return types deduced from template arguments is even more annoying. Things quickly tend to spiral out of control, frequently requiring the introduction of typedef's just to make the code marginally more readable. More importantly though, its very difficult to get the TYPE of an expression out of an...


PARTNERS