Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Latest commit

 

History

History
44 lines (24 loc) · 1.74 KB

README.md

File metadata and controls

44 lines (24 loc) · 1.74 KB
# Creating a new ANGLE project using a Visual Studio Template #
### 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.

  1. Open Visual Studio Community 2015 and select File | New Project... to start a new solution.

    Creating a New Project

    Creating a New Project

  2. 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

    Selecting the ANGLE XAML template

  3. 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.

  4. Select Debug x64 from the Project Configuration and Platform dropdowns.

    Configuring the build target

    Configuring the build target

  5. Press the F5 key to build and run your app. After the build completes, your app should look like the following.

    Sample ANGLE app

    Sample ANGLE app

Congratulations. You have created your first Windows 10 UWP ANGLE app.

Next