projects
/
movit
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Move to 'using namespace std;' in all .cpp files.
[movit]
/
overlay_effect.cpp
1
#include "overlay_effect.h"
2
#include "util.h"
3
4
using namespace std;
5
6
OverlayEffect::OverlayEffect() {}
7
8
string OverlayEffect::output_fragment_shader()
9
{
10
return read_file("overlay_effect.frag");
11
}