dxtest2

view src/main.cc @ 0:6ed01ded71d8

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 23 Jun 2013 04:23:13 +0300
parents
children
line source
1 #include <stdio.h>
2 #include <d3dut.h>
3 #include "mesh.h"
5 int main(int argc, char **argv)
6 {
7 d3dut_init(&argc, argv);
8 d3dut_init_window_size(800, 600);
9 d3dut_init_display_mode(D3DUT_RGB | D3DUT_DEPTH | D3DUT_DOUBLE);
10 d3dut_create_window("Direct3D 11 - test 2");
13 }