Skip to content

Instantly share code, notes, and snippets.

View terriblememory's full-sized avatar

I forgot. terriblememory

View GitHub Profile
@terriblememory
terriblememory / App.cpp
Last active October 12, 2017 16:09
Single file C++ UWP D3D11 shell
/**
App.cpp
*/
#include "pch.h"
#include <agile.h>
#include <dxgi1_4.h>
#include <d3d11_3.h>
#include <DirectXMath.h>
@terriblememory
terriblememory / App.xaml.cs
Last active May 24, 2017 21:51
Minimal UWP App.xaml.cs
// You don't need all of the crud the new project wizard barfs out.
using Windows.ApplicationModel.Activation;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
namespace MyThing
{
sealed partial class App : Application
{