Skip to content

Instantly share code, notes, and snippets.

View zml2008's full-sized avatar
🌊
whoosh

zml zml2008

🌊
whoosh
View GitHub Profile
@zml2008
zml2008 / VkComputeSample.c
Created May 30, 2016 06:10 — forked from sheredom/VkComputeSample
A simple Vulkan compute sample
// This is free and unencumbered software released into the public domain.
//
// Anyone is free to copy, modify, publish, use, compile, sell, or
// distribute this software, either in source code form or as a compiled
// binary, for any purpose, commercial or non-commercial, and by any
// means.
//
// In jurisdictions that recognize copyright laws, the author or authors
// of this software dedicate any and all copyright interest in the
// software to the public domain. We make this dedication for the benefit
var gulp = require('gulp');
var shell = require('gulp-shell');
gulp.task('latex', function() {
return gulp.src('*.tex')
.pipe(shell(["pdflatex -interaction=nonstopmode <%= file.path %>"]).on('error', function(){}))
.pipe(gulp.dest('./'))
});
gulp.task('watch', function() {