This file contains 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
// XOR'd carpets | |
#ifdef GL_ES | |
precision mediump float; | |
#endif | |
uniform float time; | |
uniform vec2 mouse; | |
uniform vec2 resolution; |
This file contains 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
uniform float u_fogMaxDist; | |
uniform float u_fogMinDist; | |
uniform vec4 u_fogColor; | |
varying vec4 v_eyePos; | |
float computeLinearFogFactor() | |
{ | |
float factor; | |
This file contains 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
float rand(vec3 co){ | |
return 0.9+0.1*fract(sin(co.z+dot(co.xy, vec2(12.9898,78.233))) * 43758.5453); | |
} |
This file contains 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
// | |
// RocketInterfaces.cpp | |
// rocketgp3dtest | |
// | |
// Created by Ustun Ergenoglu on 6/13/13. | |
// | |
// | |
#include "RocketInterfaces.h" | |
#include <string.h> |
This file contains 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
#Wrote this to entertain myself, on a slow day at work. | |
#Üstün Ergenoglu | |
import sys | |
class Instructions: | |
SUBP = 0 | |
INCP = 1 | |
DECP = 2 | |
INCV = 3 |
This file contains 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
// Small utility to recover forgotten Tizen certificate password. | |
// If you still have the Eclipse IDE remembering the password, you | |
// can find it in encrypted form in a file: | |
// <WORKSPACE>/.metadata/.plugins/org.tizen.common.sign/profiles.xml | |
// Then simply paste the password from that file to this utility as | |
// a command line parameter. | |
// Code is mostly copied from Tizen IDE source code. | |
package fi.ustun.tizendecipher; |
OlderNewer