### Exercise 1: Creating a new ANGLE project using a Visual Studio Template ###
In this exercise, you will use Visual Studio 2015 to create a new ANGLE project using the installed ANGLE project templates. You will also build and run the new project.
-
Open Visual Studio Community 2015 and select File | New Project... to start a new solution.
Creating a New Project
-
Select the XAML App for OpenGL ES (Windows Universal) template from Visual C++ | Windows | Universal to start a new solution.
Selecting the ANGLE XAML template
-
Name the solution Breakout and save it in the CodeLabs/Workshops/Games/Module3-ANGLE/Source/Ex1/Begin folder. Click on OK to create the solution.
-
Select Debug x64 from the Project Configuration and Platform dropdowns.
Configuring the build target
-
Press the F5 key to build and run your app. After the build completes, your app should look like the following.
Sample ANGLE app
Congratulations. You have created your first Windows 10 UWP ANGLE app.
- Continue on to Exercise 2: Integrating your game code with ANGLE
- Return to Start