git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
#include <iostream> | |
#include <cassert> | |
using namespace std; | |
typedef unsigned long long uint64; | |
template<uint64 high, uint64 low> | |
class cookie | |
{ |
template<class T> | |
class range | |
{ | |
public: | |
class range_iterator | |
{ | |
public: | |
range_iterator(const T Position_) : Position(Position_) | |
{ | |
} |
#pragma once | |
#include <stdint.h> | |
#pragma pack(push, 8) | |
#if __cplusplus >= 201103L || (__cplusplus && _MSC_VER >= 1900) | |
#define GOB_DISALLOW_COPYING(type) type(const type&) = delete; | |
#else | |
#define GOB_DISALLOW_COPYING(type) |
class copy_command_list //wraps ID3D12GraphicsCommandList instances of the COPY type variety. | |
//Why this is needed will be made clear later | |
{ | |
public: | |
void CopyBufferRegion(...); | |
void CopyResource(...); | |
void CopyTextureRegion(...); | |
void ResourceBarrier(...); | |
void Close(); //I'll explain why this returns void and not an HRESULT - it's intentional. | |
}; |
Consider a Turing-complete computer with N instructions where N >= 1. Instructions I = { i0, i1, i2, ..., i(n-1)}. | |
Let's define a Finite State Machine (FSM) that takes as input a binary string of 0s and 1s. The FSM has an integer C that starts as 0. | |
For every letter consumed by the FSM: | |
- if the letter is 0, emit the instruction i(C MODULO N) and then reset C to 0 | |
- if the letter is 1, C = C + 1 | |
===== FORMAL END ===== | |
Informal: the number of 1s preceding a 0 is a running tally of its index in the set I, and Modulo is applied to ensure the instruction |
// Sample custom iterator. | |
// By perfectly.insane (http://www.dreamincode.net/forums/index.php?showuser=76558) | |
// From: http://www.dreamincode.net/forums/index.php?showtopic=58468 | |
#include <iostream> | |
#include <vector> | |
#include <algorithm> | |
#include <iterator> | |
#include <cassert> |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
From ca8c0459fee3e8c87791360eb87c370026a94fb6 Mon Sep 17 00:00:00 2001 | |
From: Sherief Farouk <[email protected]> | |
Date: Tue, 12 Apr 2022 17:32:48 -0700 | |
Subject: [PATCH] Added explicit PhysicsSystem::Teardown(). | |
--- | |
Jolt/Physics/PhysicsSystem.cpp | 10 ++++++++-- | |
Jolt/Physics/PhysicsSystem.h | 1 + | |
2 files changed, 9 insertions(+), 2 deletions(-) |
ID: 00007FFC8D287130 | |
NAME: Conv (Convolution) | |
CREATION | |
NAME: InputResource | |
Type: GPU DESCRIPTOR HANDLE CBV SRV UAV | |
Input/Output: | |
STRUCTOFFSET: 0 | |
NAME: FilterResource |