dxtest2

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/main.cc	Sun Jun 23 04:23:13 2013 +0300
     1.3 @@ -0,0 +1,13 @@
     1.4 +#include <stdio.h>
     1.5 +#include <d3dut.h>
     1.6 +#include "mesh.h"
     1.7 +
     1.8 +int main(int argc, char **argv)
     1.9 +{
    1.10 +	d3dut_init(&argc, argv);
    1.11 +	d3dut_init_window_size(800, 600);
    1.12 +	d3dut_init_display_mode(D3DUT_RGB | D3DUT_DEPTH | D3DUT_DOUBLE);
    1.13 +	d3dut_create_window("Direct3D 11 - test 2");
    1.14 +
    1.15 +
    1.16 +}
    1.17 \ No newline at end of file