-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathMain.cpp
More file actions
20 lines (18 loc) · 732 Bytes
/
Main.cpp
File metadata and controls
20 lines (18 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//*********************************************************
//
// Copyright (c) Microsoft. All rights reserved.
// This code is licensed under the MIT License (MIT).
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
//
//*********************************************************
#include "stdafx.h"
#include "DirectCompositeSample.h"
_Use_decl_annotations_
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR, int nCmdShow)
{
DirectCompositeSample sample(512, 512, L"DirectComposite DirectX 12 Sample");
return Win32Application::Run(&sample, hInstance, nCmdShow);
}