Update Build file for builder 1.0
package "mspgl"
{
- version "1.0";
+ version "1.1";
description "Lightweight C++/OpenGL graphics engine";
- tar_file "License.txt";
- tar_file "Changelog.txt";
-
require "mspdatafile";
require "mspgbase";
require "opengl";
+ headers "msp/gl"
+ {
+ source "source";
+ install true;
+ };
+
library "mspgl"
{
source "source";
install true;
- install_headers "msp/gl";
+ };
+
+ tarball "@src"
+ {
+ source "License.txt";
+ source "Changelog.txt";
};
};
+1.1
+* Pipeline and effect framework
+* Support for generic vertex attributes
+* RAII classes for push/pop_matrix and bind/unbind
+* Viewport control functions
+* Blender exporter
+ - Store settings between runs
+ - Export texture coordinates and TB vectors
+ - Apply modifiers to mesh when exporting
+* Various bugfixes
+
1.0
* Add class Technique to share passes between Objects
* Scene automatically recognizes ObjectInstances and optimizes rendering them