projects
/
demo
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
support for floating point images => needed for skybox
[demo]
/
src
/
object.cc
1
#include "object.h"
2
#include "mesh.h"
3
#include "shader.h"
4
5
Object::Object()
6
{
7
material = 0;
8
mesh = 0;
9
}
10
11
Object::~Object()
12
{
13
}