-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Overhaul to rendering engine. Moved RenderPrimitives to separate file…
…s (engine_primitives.h|cpp). Made an external instantiation of RenderEngine, rather than it being owned by TCanvas. Moved main scene rendering code from TCanvas to RenderEngine. Added default use of QGLPixelBuffer for offscreen rendering. Removed references to stored Model pixel data throughout, since it was no longer used. Moved VBO check and setup code to RenderEngine constructor. Removed self-handling of QGLFormat. Renamed Prefs::useFrameBuffer_ to Prefs::usePixelBuffers_. Removed Prefs::useNiceText_ option since it is no longer valid. Added separate primitive lists for line objects (renamed from stickLines_ etc.) to make handling easier. Fragment rendering now is filtered into the GuiObject (or NormalGuiLineObject and SelectedGuiLineObject) lists.
- Loading branch information
trisyoungs
committed
Jul 15, 2012
1 parent
9b65cb1
commit 15138ed
Showing
47 changed files
with
1,550 additions
and
1,532 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[Project] | ||
Manager=KDevCustomMakeManager | ||
Name=aten | ||
Manager=KDevCMakeManager | ||
Name=aten-pixmap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
AC_PREREQ(2.60) | ||
|
||
# Set program name, version, bug-address and source directory | ||
m4_define([ATEN_VERSION],[1.828]) | ||
m4_define([ATEN_VERSION],[1.829]) | ||
AC_INIT(aten,ATEN_VERSION,[email protected]) | ||
AC_CONFIG_SRCDIR([src/main.cpp]) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Format: 1.0 | ||
Source: aten | ||
Version: 1.828 | ||
Version: 1.829 | ||
Binary: aten | ||
Maintainer: Tristan Youngs <[email protected]> | ||
Architecture: any | ||
Build-Depends: debhelper (>= 4.1.16), libqt4-dev | libqt4-core, libqt4-opengl-dev, libreadline5-dev | libreadline-dev, libgl1-mesa-dev, pkgconfig | pkg-config, libncurses5 | ||
Files: | ||
4aec60597e330aeae02c1af550c6deab 4293031 aten-1.828.tar.gz | ||
4aec60597e330aeae02c1af550c6deab 4293031 aten-1.829.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.