Switch SwiftShader to use GDI

We've seen some issues loading swiftshader, so use GDI to present to the screen.
Review URL: https://chromereviews.googleplex.com/4156013
diff --git a/src/D3D9/Direct3DSwapChain9.cpp b/src/D3D9/Direct3DSwapChain9.cpp
index 3ae1c4d..6efdf6c 100644
--- a/src/D3D9/Direct3DSwapChain9.cpp
+++ b/src/D3D9/Direct3DSwapChain9.cpp
@@ -346,7 +346,7 @@
 		lockable = presentParameters->Flags & D3DPRESENTFLAG_LOCKABLE_BACKBUFFER;
 
 		sw::Configurator ini("SwiftShader.ini");
-		int api = ini.getInteger("Testing", "FrameBufferAPI", 0);
+		int api = ini.getInteger("Testing", "FrameBufferAPI", 1);
 
 		if(api == 0)
 		{
diff --git a/src/Main/FrameBuffer.cpp b/src/Main/FrameBuffer.cpp
index 1e3fee5..93b72d0 100644
--- a/src/Main/FrameBuffer.cpp
+++ b/src/Main/FrameBuffer.cpp
@@ -553,7 +553,7 @@
 	sw::FrameBuffer *createFrameBuffer(HWND windowHandle, int width, int height, bool fullscreen)
 	{
 		sw::Configurator ini("SwiftShader.ini");
-		int api = ini.getInteger("Testing", "FrameBufferAPI", 0);
+		int api = ini.getInteger("Testing", "FrameBufferAPI", 1);
 
 		if(api == 0)
 		{
@@ -567,4 +567,4 @@
 
 		return 0;
 	}
-}
\ No newline at end of file
+}