This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
def GenerateGaussianFilter(taps) : | |
weights = [] | |
sum = 0.0 | |
w = 1.0 | |
width = (taps-1)*2 | |
for i in range((width)/2+1) : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Yuriy O'Donnell <[email protected]> | |
// Released under MIT License (do whatever you want with it) | |
#define NOMINMAX | |
#define WIN32_LEAN_AND_MEAN | |
#include <stdio.h> | |
#include <windows.h> | |
#include <xnamath.h> | |
#include <malloc.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Raw Symbols | |
Total Count : 1548 | |
Total Size : 388632 | |
-------------------------------------- | |
Sorted by Size | |
Size Section/Type Name Source | |
19720 .text _vfprintf_r | |
19397 .text _svfprintf_r | |
16384 .bss emergency_buffer | |
11997 .text _vfiprintf_r |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import textwrap | |
s=open(sys.argv[1], 'rb').read().encode("hex").upper() | |
t=",".join(["0x"+x+y for (x,y) in zip(s[0::2], s[1::2])]) | |
print "const unsigned char data[] = {\n\t%s\n};"%" \n\t".join(textwrap.wrap(t,80)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// clang main.cpp | |
#include <tchar.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <windows.h> | |
#include <D3D11.h> | |
#include <D3Dcompiler.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// On MacOS X compile with g++ -framework OpenCL <filename> | |
#include <stdio.h> | |
#include <OpenCL/opencl.h> | |
#define P(x) x,#x | |
void printClDeviceInfoString(cl_device_id device_id, cl_device_info param_name, const char* printable_name) | |
{ | |
char val[1024]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Rush/Rush.h> | |
#include <Rush/Platform.h> | |
#include <Rush/RenderPrimitiveBatch.h> | |
#include <Rush/GraphicsBitmapFont.h> | |
#include <stdio.h> | |
using namespace Rush; | |
RushAppConfig g_appConfig; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Rush/Rush.h> | |
#include <Rush/Platform.h> | |
#include <stdio.h> | |
using namespace Rush; | |
RushAppConfig g_appConfig; | |
static void startup(RushPlatformContext* context) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# JamPlus script | |
MODEL_TOOL = "..\\bin\\datatool.exe" ; | |
TEXTURE_TOOL = "..\\scripts\\win32\\texconv.exe" ; | |
SHADER_TOOL = "..\\scripts\\win32\\fxc.exe" ; | |
# -------------------------------------------------------------------------- | |
actions ModelAction | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# JamPlus script | |
SubDir TOP ; | |
DEPCACHE.standard = ../bin/data/depcache ; | |
# Global paths | |
PATH_DATA = "../bin/data" ; | |
PATH_CONTENT = "../content" ; |
OlderNewer