Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • demetrius/netrunner
  • despair/netrunner
  • antpy/netrunner
  • dylanbaughercontact/netrunner
  • okn3/netrunner
  • geertiebear/netrunner
  • mechacrash/netrunner
  • vaartis/netrunner
  • flat/netrunner
9 results
Show changes
Showing
with 3775 additions and 2 deletions
File added
File added
File added
No preview for this file type
File added
No preview for this file type
File added
File deleted
#!/bin/bash
mkdir netrunner-$(date +%F)-32
cd netrunner-$(date +%F)-32
# this now has the ttfs and pnm
cp -r ../../../res .
cp ../../../ca-bundle.crt .
curl https://nt-build-bot.rvx86.net/job/netrunner-winnt-i686/lastSuccessfulBuild/artifact/bin/netrunner.exe > netrunner32.exe
cd ..
zip -r -X netrunner-$(date +%F)-win32.zip netrunner-$(date +%F)-32
rm -fr netrunner-$(date +%F)-32
mkdir netrunner-$(date +%F)-64
cd netrunner-$(date +%F)-64
# this now has the ttfs and pnm
cp -r ../../../res .
cp ../../../ca-bundle.crt .
curl https://nt-build-bot.rvx86.net/job/netrunner-winnt-amd64/lastSuccessfulBuild/artifact/bin/netrunner.exe > netrunner64.exe
cd ..
zip -r -X netrunner-$(date +%F)-win64.zip netrunner-$(date +%F)-64
rm -fr netrunner-$(date +%F)-64
# https://gitgud.io/snippets/29
File moved
File moved
File moved
File moved
This diff is collapsed.
document = {
head: "",
documentElement: {},
getElementsByTagName: function(tag) {
return [];
},
querySelector: function(selector) {
return null;
},
querySelectorAll: function(selector) {
},
addEventListener: function(label, cb, overwrite) {
//
}
};
window.innerWidth=600
Date = {
now: function() {
//__netrunner_datenow();
}
}
XMLHttpRequest = {
// withCredentials:
}
......@@ -4,6 +4,6 @@ in vec4 colorPipe;
in vec2 texCoordPipe;
out vec4 colorOut;
void main() {
// colorOut = vec4(0.0, 0.0, 0.0, texture(textureIn, texCoordPipe).r); // TODO blend alpha
//colorOut = vec4(0.0, 0.0, 0.0, texture(textureIn, texCoordPipe).r); // TODO blend alpha
colorOut = vec4(colorPipe.rgb, texture(textureIn, texCoordPipe).r); // TODO blend alpha
}
#version 330
uniform mat4 transform;
layout (location = 0) in vec3 vertexIn;
layout (location = 1) in vec2 texCoordIn;
out vec2 texCoordPipe;
void main() {
gl_Position = vec4(vertexIn, 1.0);
gl_Position = transform * vec4(vertexIn, 1.0);
texCoordPipe = texCoordIn;
}
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by netrunner.rc
//
#define IDI_ICON1 102
#define IDI_ICON2 104
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 105
#define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1000
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif