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
#version 150 | |
// UNCOMMENT the following line to crash the linker | |
// Crash happens on driver 10.18.14.4264 on Windows 8.1 x64, on Intel HD 4400 | |
//#define CRASH_DRIVER_PLEASE | |
in vec4 var_shadowTexCoords; | |
uniform sampler2DShadow py_shadowMaps[ 1 ]; | |
out vec4 fragColor; |
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
import ctypes | |
import ctypes.wintypes as wintypes | |
LPOFNHOOKPROC = ctypes.c_voidp # TODO | |
LPCTSTR = LPTSTR = ctypes.c_wchar_p | |
class OPENFILENAME(ctypes.Structure): | |
_fields_ = [("lStructSize", wintypes.DWORD), | |
("hwndOwner", wintypes.HWND), | |
("hInstance", wintypes.HINSTANCE), |
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
/* https://gist.github.com/nicomgd/8752912aaa0ecc7c2279 */ | |
/* copy&paste theses lines in a new Stylish style */ | |
.status-5 > * { | |
color: #CCC !important; | |
/*display: none;*/ | |
background-color: #fff; | |
} | |
table.list tr.issue.status-5 a { /* en attente */ |