abysmal-commit Mailing List for Abysmal Engine (Page 4)
Status: Pre-Alpha
Brought to you by:
jlanger85
You can subscribe to this list here.
| 2009 |
Jan
|
Feb
|
Mar
(37) |
Apr
(126) |
May
(85) |
Jun
(1) |
Jul
(2) |
Aug
(42) |
Sep
(9) |
Oct
(1) |
Nov
|
Dec
(20) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2010 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2012 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <jla...@us...> - 2009-08-20 14:45:02
|
Revision: 441
http://abysmal.svn.sourceforge.net/abysmal/?rev=441&view=rev
Author: jlanger85
Date: 2009-08-20 14:44:53 +0000 (Thu, 20 Aug 2009)
Log Message:
-----------
removed GLee. OpenGL extension handling is now done manually, which
means that is also works with OpenGL ES
Modified Paths:
--------------
abysmal/trunk/src/CMakeLists.txt
abysmal/trunk/src/backend/iphone/iphone.cpp
abysmal/trunk/src/main.cpp
abysmal/trunk/src/renderer/CMakeLists.txt
abysmal/trunk/src/renderer/gl.h
abysmal/trunk/src/renderer/renderer.cpp
abysmal/trunk/src/renderer/texture.cpp
abysmal/trunk/src/renderer/vertex_array.h
abysmal/trunk/thirdparty/CMakeLists.txt
abysmal/trunk/thirdparty/README
Added Paths:
-----------
abysmal/trunk/src/renderer/glext.cpp
abysmal/trunk/src/renderer/glext.h
Removed Paths:
-------------
abysmal/trunk/thirdparty/glee/CMakeLists.txt
abysmal/trunk/thirdparty/glee/GL/GLee.h
abysmal/trunk/thirdparty/glee/GLee.c
abysmal/trunk/thirdparty/glee/patches/apple.patch
abysmal/trunk/thirdparty/glee/patches/series
abysmal/trunk/thirdparty/glee/readme.txt
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-08-20 14:44:07
|
Revision: 440
http://abysmal.svn.sourceforge.net/abysmal/?rev=440&view=rev
Author: jlanger85
Date: 2009-08-20 14:44:01 +0000 (Thu, 20 Aug 2009)
Log Message:
-----------
a few missing x11 headers
Modified Paths:
--------------
abysmal/trunk/src/renderer/fontrenderer.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-08-19 18:07:46
|
Revision: 439
http://abysmal.svn.sourceforge.net/abysmal/?rev=439&view=rev
Author: jlanger85
Date: 2009-08-19 18:07:34 +0000 (Wed, 19 Aug 2009)
Log Message:
-----------
Initial port of abysmal for the iPhone.
There's still a lots of stuff to do:
* input and keyboard handling. That's probably a big task, see how other games,
do it.
* complete the iphone backend
* fix startup and cleanup procedure. Right now abysmal must be killed on the
shell
* clean up all the prelimiary #ifdef ABYSMAL_IPHONE
* enable VBOs on the iphone
* Glee doesn't work on GL ES, though extensions are also available for GL ES.
would probably be the best to ditch GLee and do some minimal extension
handling ourself, which would then work for both OpenGL and OpenGL ES
* cleanup usage of integer quads etc.. OpenGL ES does not support 32 bit integer
for vertex/texture/color data, so it doesn't make sense to store it as integers
internally and then cast them to floats when rendering. Also the rendering of
the 2d UI elements could be improved by collecting more data into vertex arrays.
* general performance optimizations could be done. Things like texture
atlases to reduce glBindTexture even more come to mind
* frustum culling is suboptimal, draws much more than is visible
* some nice UIKit UI instead of my hand-rolled ugly OpenGL based UI
* OpenGL ES doesn't have a name stack, so using glPushName and friends for
picking is not possible :-(
Modified Paths:
--------------
abysmal/trunk/CMakeLists.txt
abysmal/trunk/src/CMakeLists.txt
abysmal/trunk/src/backend/CMakeLists.txt
abysmal/trunk/src/backend/backend.cpp
abysmal/trunk/src/backend/backend.h
abysmal/trunk/src/backend/sdl.cpp
abysmal/trunk/src/backend/win32.cpp
abysmal/trunk/src/backend/x11.cpp
abysmal/trunk/src/base/image.h
abysmal/trunk/src/base/levelgeometry.cpp
abysmal/trunk/src/common/math.h
abysmal/trunk/src/game/collision.cpp
abysmal/trunk/src/game/core.cpp
abysmal/trunk/src/game/player.cpp
abysmal/trunk/src/game/uw/states/mainstate.cpp
abysmal/trunk/src/game/uw/ui/textbox.cpp
abysmal/trunk/src/game/uw/uwobject.cpp
abysmal/trunk/src/game/uw/uwobjprop.cpp
abysmal/trunk/src/main.cpp
abysmal/trunk/src/mainmenu.cpp
abysmal/trunk/src/renderer/CMakeLists.txt
abysmal/trunk/src/renderer/fontrenderer.cpp
abysmal/trunk/src/renderer/fontrenderer.h
abysmal/trunk/src/renderer/gl.h
abysmal/trunk/src/renderer/glwrapper.cpp
abysmal/trunk/src/renderer/glwrapper.h
abysmal/trunk/src/renderer/renderer.cpp
abysmal/trunk/src/renderer/texture.cpp
abysmal/trunk/src/renderer/vertex_array.h
abysmal/trunk/src/ui/border.cpp
abysmal/trunk/src/ui/border.h
abysmal/trunk/src/ui/box.cpp
abysmal/trunk/src/ui/console.cpp
abysmal/trunk/src/ui/cursor.cpp
abysmal/trunk/src/ui/imagebox.cpp
abysmal/trunk/src/ui/listbox.cpp
abysmal/trunk/src/ui/window.cpp
abysmal/trunk/thirdparty/CMakeLists.txt
Added Paths:
-----------
abysmal/trunk/cmake/Toolchain-iphone.cmake
abysmal/trunk/src/backend/backend_fwd.h
abysmal/trunk/src/backend/backend_impl.h
abysmal/trunk/src/backend/iphone/
abysmal/trunk/src/backend/iphone/CMakeLists.txt
abysmal/trunk/src/backend/iphone/app.h
abysmal/trunk/src/backend/iphone/app.mm
abysmal/trunk/src/backend/iphone/iphone.cpp
abysmal/trunk/src/backend/iphone/iphone.h
abysmal/trunk/src/backend/iphone/main.m
abysmal/trunk/src/backend/iphone/view.h
abysmal/trunk/src/backend/iphone/view.mm
abysmal/trunk/src/backend/iphone.cpp
abysmal/trunk/src/backend/iphone.h
abysmal/trunk/thirdparty/glu-mesa/
abysmal/trunk/thirdparty/glu-mesa/CMakeLists.txt
abysmal/trunk/thirdparty/glu-mesa/dummy.c
abysmal/trunk/thirdparty/glu-mesa/include/
abysmal/trunk/thirdparty/glu-mesa/include/GL/
abysmal/trunk/thirdparty/glu-mesa/include/GL/glu.h
abysmal/trunk/thirdparty/glu-mesa/include/gluos.h
abysmal/trunk/thirdparty/glu-mesa/libtess/
abysmal/trunk/thirdparty/glu-mesa/libtess/CMakeLists.txt
abysmal/trunk/thirdparty/glu-mesa/libtess/README
abysmal/trunk/thirdparty/glu-mesa/libtess/alg-outline
abysmal/trunk/thirdparty/glu-mesa/libtess/dict-list.h
abysmal/trunk/thirdparty/glu-mesa/libtess/dict.c
abysmal/trunk/thirdparty/glu-mesa/libtess/dict.h
abysmal/trunk/thirdparty/glu-mesa/libtess/geom.c
abysmal/trunk/thirdparty/glu-mesa/libtess/geom.h
abysmal/trunk/thirdparty/glu-mesa/libtess/memalloc.c
abysmal/trunk/thirdparty/glu-mesa/libtess/memalloc.h
abysmal/trunk/thirdparty/glu-mesa/libtess/mesh.c
abysmal/trunk/thirdparty/glu-mesa/libtess/mesh.h
abysmal/trunk/thirdparty/glu-mesa/libtess/normal.c
abysmal/trunk/thirdparty/glu-mesa/libtess/normal.h
abysmal/trunk/thirdparty/glu-mesa/libtess/priorityq-heap.c
abysmal/trunk/thirdparty/glu-mesa/libtess/priorityq-heap.h
abysmal/trunk/thirdparty/glu-mesa/libtess/priorityq-sort.h
abysmal/trunk/thirdparty/glu-mesa/libtess/priorityq.c
abysmal/trunk/thirdparty/glu-mesa/libtess/priorityq.h
abysmal/trunk/thirdparty/glu-mesa/libtess/render.c
abysmal/trunk/thirdparty/glu-mesa/libtess/render.h
abysmal/trunk/thirdparty/glu-mesa/libtess/sweep.c
abysmal/trunk/thirdparty/glu-mesa/libtess/sweep.h
abysmal/trunk/thirdparty/glu-mesa/libtess/tess.c
abysmal/trunk/thirdparty/glu-mesa/libtess/tess.h
abysmal/trunk/thirdparty/glu-mesa/libtess/tessmono.c
abysmal/trunk/thirdparty/glu-mesa/libtess/tessmono.h
abysmal/trunk/thirdparty/glu-mesa/libutil/
abysmal/trunk/thirdparty/glu-mesa/libutil/CMakeLists.txt
abysmal/trunk/thirdparty/glu-mesa/libutil/error.c
abysmal/trunk/thirdparty/glu-mesa/libutil/glue.c
abysmal/trunk/thirdparty/glu-mesa/libutil/gluint.h
abysmal/trunk/thirdparty/glu-mesa/libutil/project.c
abysmal/trunk/thirdparty/glu-mesa/libutil/registry.c
abysmal/trunk/thirdparty/glu-mesa/patches/
abysmal/trunk/thirdparty/glu-mesa/patches/opengles.patch
abysmal/trunk/thirdparty/glu-mesa/patches/series
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-07-15 17:57:55
|
Revision: 438
http://abysmal.svn.sourceforge.net/abysmal/?rev=438&view=rev
Author: jlanger85
Date: 2009-07-15 17:57:49 +0000 (Wed, 15 Jul 2009)
Log Message:
-----------
some work on object properties
Modified Paths:
--------------
abysmal/trunk/doc/uw-formats.txt
abysmal/trunk/src/audio/midi/CMakeLists.txt
abysmal/trunk/src/backend/backend.cpp
abysmal/trunk/src/common/datastream.h
abysmal/trunk/src/common/stream.cpp
abysmal/trunk/src/common/stream.h
abysmal/trunk/src/common/trace.h
abysmal/trunk/src/game/uw/import/modelimport.cpp
abysmal/trunk/src/game/uw/import/stringsloader.cpp
abysmal/trunk/src/game/uw/states/mainstate.cpp
abysmal/trunk/src/game/uw/uwgame.cpp
abysmal/trunk/src/game/uw/uwgame.h
abysmal/trunk/src/game/uw/uwobject.h
abysmal/trunk/src/tools/CMakeLists.txt
Added Paths:
-----------
abysmal/trunk/src/game/uw/uwobjprop.cpp
abysmal/trunk/src/game/uw/uwobjprop.h
abysmal/trunk/src/game/uw/uwobjpropfwd.h
abysmal/trunk/src/tools/uwobjdump.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-07-15 17:56:58
|
Revision: 437
http://abysmal.svn.sourceforge.net/abysmal/?rev=437&view=rev
Author: jlanger85
Date: 2009-07-15 17:56:51 +0000 (Wed, 15 Jul 2009)
Log Message:
-----------
get_revision.cmake: set LC_ALL to C before invoking the subversion command
Modified Paths:
--------------
abysmal/trunk/cmake/get_revision.cmake
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <df...@us...> - 2009-06-05 06:49:57
|
Revision: 436
http://abysmal.svn.sourceforge.net/abysmal/?rev=436&view=rev
Author: dforger
Date: 2009-06-05 06:49:55 +0000 (Fri, 05 Jun 2009)
Log Message:
-----------
[fix] typo in model generation
Modified Paths:
--------------
abysmal/trunk/doc/uw-formats.txt
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 17:04:46
|
Revision: 435
http://abysmal.svn.sourceforge.net/abysmal/?rev=435&view=rev
Author: jlanger85
Date: 2009-05-17 17:04:42 +0000 (Sun, 17 May 2009)
Log Message:
-----------
debian/rules: link boost statically again. This makes it easier to achieve
binary compatibilty between Ubuntu and Debian (i.e. the Ubuntu packages from
launchpad should now work on Debian)
Modified Paths:
--------------
abysmal/trunk/debian/rules
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 17:04:22
|
Revision: 434
http://abysmal.svn.sourceforge.net/abysmal/?rev=434&view=rev
Author: jlanger85
Date: 2009-05-17 17:04:12 +0000 (Sun, 17 May 2009)
Log Message:
-----------
README update
Modified Paths:
--------------
abysmal/trunk/doc/README.txt
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 16:39:47
|
Revision: 433
http://abysmal.svn.sourceforge.net/abysmal/?rev=433&view=rev
Author: jlanger85
Date: 2009-05-17 16:39:38 +0000 (Sun, 17 May 2009)
Log Message:
-----------
force usage of boosts TR1 when doing windows release builds
Modified Paths:
--------------
abysmal/trunk/make_win32_release.bat
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 15:31:22
|
Revision: 432
http://abysmal.svn.sourceforge.net/abysmal/?rev=432&view=rev
Author: jlanger85
Date: 2009-05-17 15:31:21 +0000 (Sun, 17 May 2009)
Log Message:
-----------
fixed reading the revision date with git 1.5
Modified Paths:
--------------
abysmal/trunk/cmake/get_revision.cmake
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 15:08:30
|
Revision: 431
http://abysmal.svn.sourceforge.net/abysmal/?rev=431&view=rev
Author: jlanger85
Date: 2009-05-17 15:08:22 +0000 (Sun, 17 May 2009)
Log Message:
-----------
add missing build-dep on python-xml
Modified Paths:
--------------
abysmal/trunk/debian/control
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 14:57:05
|
Revision: 430
http://abysmal.svn.sourceforge.net/abysmal/?rev=430&view=rev
Author: jlanger85
Date: 2009-05-17 14:56:54 +0000 (Sun, 17 May 2009)
Log Message:
-----------
make_release_tarball: use make and not gmake
Modified Paths:
--------------
abysmal/trunk/make_release_tarball
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 14:47:06
|
Revision: 429
http://abysmal.svn.sourceforge.net/abysmal/?rev=429&view=rev
Author: jlanger85
Date: 2009-05-17 14:47:05 +0000 (Sun, 17 May 2009)
Log Message:
-----------
add the debian revision to the orig.tar.gz instead to avoid conflicts
Modified Paths:
--------------
abysmal/trunk/ppabuild
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 14:40:28
|
Revision: 428
http://abysmal.svn.sourceforge.net/abysmal/?rev=428&view=rev
Author: jlanger85
Date: 2009-05-17 14:40:15 +0000 (Sun, 17 May 2009)
Log Message:
-----------
get_revision.cmake: fix reading the revision with the real svn client
Modified Paths:
--------------
abysmal/trunk/cmake/get_revision.cmake
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 14:37:29
|
Revision: 427
http://abysmal.svn.sourceforge.net/abysmal/?rev=427&view=rev
Author: jlanger85
Date: 2009-05-17 14:37:22 +0000 (Sun, 17 May 2009)
Log Message:
-----------
ppabuild: -d switch to change debian revision
Modified Paths:
--------------
abysmal/trunk/ppabuild
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 14:28:32
|
Revision: 426
http://abysmal.svn.sourceforge.net/abysmal/?rev=426&view=rev
Author: jlanger85
Date: 2009-05-17 14:28:23 +0000 (Sun, 17 May 2009)
Log Message:
-----------
fix the boost build-deps
Modified Paths:
--------------
abysmal/trunk/debian/control
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 14:14:32
|
Revision: 423
http://abysmal.svn.sourceforge.net/abysmal/?rev=423&view=rev
Author: jlanger85
Date: 2009-05-17 13:33:33 +0000 (Sun, 17 May 2009)
Log Message:
-----------
ppabuild: armed the script so that it now actually does the real upload
Modified Paths:
--------------
abysmal/trunk/make_release_tarball_pre
abysmal/trunk/ppabuild
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 14:00:03
|
Revision: 424
http://abysmal.svn.sourceforge.net/abysmal/?rev=424&view=rev
Author: jlanger85
Date: 2009-05-17 13:36:22 +0000 (Sun, 17 May 2009)
Log Message:
-----------
updated changelog for the first binary snapshot
Added Paths:
-----------
abysmal/trunk/debian/changelog
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 14:00:02
|
Revision: 425
http://abysmal.svn.sourceforge.net/abysmal/?rev=425&view=rev
Author: jlanger85
Date: 2009-05-17 13:39:55 +0000 (Sun, 17 May 2009)
Log Message:
-----------
fixed a wrong path in ppabuild
Modified Paths:
--------------
abysmal/trunk/ppabuild
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 13:07:16
|
Revision: 422
http://abysmal.svn.sourceforge.net/abysmal/?rev=422&view=rev
Author: jlanger85
Date: 2009-05-17 13:07:09 +0000 (Sun, 17 May 2009)
Log Message:
-----------
debian package:
* fixed boost build-deps
* link dynamically against boost
Modified Paths:
--------------
abysmal/trunk/CMakeLists.txt
abysmal/trunk/cmake/get_revision.cmake
abysmal/trunk/debian/control
abysmal/trunk/debian/docs
abysmal/trunk/debian/rules
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 11:58:09
|
Revision: 421
http://abysmal.svn.sourceforge.net/abysmal/?rev=421&view=rev
Author: jlanger85
Date: 2009-05-17 11:58:04 +0000 (Sun, 17 May 2009)
Log Message:
-----------
fix build-dep for opengl
Modified Paths:
--------------
abysmal/trunk/debian/control
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 10:07:04
|
Revision: 420
http://abysmal.svn.sourceforge.net/abysmal/?rev=420&view=rev
Author: jlanger85
Date: 2009-05-17 10:06:56 +0000 (Sun, 17 May 2009)
Log Message:
-----------
added workaround for buggy Intel drivers on Windows
Modified Paths:
--------------
abysmal/trunk/src/mainmenu.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 09:43:42
|
Revision: 419
http://abysmal.svn.sourceforge.net/abysmal/?rev=419&view=rev
Author: jlanger85
Date: 2009-05-17 09:43:33 +0000 (Sun, 17 May 2009)
Log Message:
-----------
don't crash when encountering chars which don't exist in the font
Modified Paths:
--------------
abysmal/trunk/src/renderer/fontrenderer.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 07:53:51
|
Revision: 418
http://abysmal.svn.sourceforge.net/abysmal/?rev=418&view=rev
Author: jlanger85
Date: 2009-05-17 07:53:43 +0000 (Sun, 17 May 2009)
Log Message:
-----------
more warning "fixes"
Modified Paths:
--------------
abysmal/trunk/src/audio/midi/timidity-old/CMakeLists.txt
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jla...@us...> - 2009-05-17 07:46:39
|
Revision: 417
http://abysmal.svn.sourceforge.net/abysmal/?rev=417&view=rev
Author: jlanger85
Date: 2009-05-17 07:46:30 +0000 (Sun, 17 May 2009)
Log Message:
-----------
supress a few warnings on VC9
Modified Paths:
--------------
abysmal/trunk/src/common/compat/tr1/unordered_map.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|