随笔分类 -  direct3d

摘要:转自:http://blog.csdn.net/sagakiss/article/details/1707608新建Win32项目新建文件CreateDeviceMy.cpp代码如下://包含Dx9的头文件#include <d3d9.h>#pragma warning( disable : 4996 ) //除去警告 #include <strsafe.h>#pragma warning( default : 4996 ) //----------------------------------------------------------------------- 阅读全文
posted @ 2013-05-30 18:27 fff8965 阅读(273) 评论(0) 推荐(0)
摘要:gdi截屏// TTTest.cpp : 定义应用程序的入口点。//#include "stdafx.h"#include "TTTest.h"#include <stdio.h>LPVOID screenCaptureData=NULL;HBITMAP hBitmap;HDC hDDC;HDC hCDC;int nWidth;int nHeight;void initGDI(){ // Get screen size nWidth = GetSystemMetrics(SM_CXSCREEN); nHeight = GetSystemMet 阅读全文
posted @ 2013-04-10 16:08 fff8965 阅读(5761) 评论(3) 推荐(0)