Summary: | OpenGL backend render planets, Moon and Sun as squares | ||
---|---|---|---|
Product: | [Applications] kstars | Reporter: | Alexey Khudiakov <alexey.skladnoy> |
Component: | general | Assignee: | Akarsh Simha <akarsh.simha> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | mutlaqja |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Unlisted Binaries | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Alexey Khudiakov
2011-02-23 01:16:12 UTC
Git commit 4bb749b5842f0fd7838dc5a5f068dd39a0296bb1 by Khudyakov Alexey. Committed on 03/05/2011 at 23:14. Pushed by khudyakov into branch 'master'. It required rewrite of TextureManager. Now its API became much simpler there are just 3(+1) static functions. One to obtain image and two to bind texture. Most important changes: * Texture IDs are cached by Qt so there no point cache them twice * Texture manager do not own GL context any more. Instead it is passed as parameter of QGLWidget* type. * Texture class is not used anywhere but is still here. * All Q_ASSERTS on QGLContext are gone * Planet and deep-skyes store their images as QImage not as textures. Also they are loaded at construction time. Unfortunately this is rather large changeset but there is no obvious way to implement these changes incrementally. CCMAIL: kstars-devel@kde.org BUG: 266933 M +58 -80 kstars/skyglpainter.cpp M +2 -2 kstars/skyglpainter.h M +0 -7 kstars/skymap.cpp M +4 -6 kstars/skymapgldraw.cpp M +9 -12 kstars/skyobjects/deepskyobject.cpp M +5 -11 kstars/skyobjects/deepskyobject.h M +1 -1 kstars/skyobjects/ksmoon.cpp M +2 -3 kstars/skyobjects/ksplanetbase.cpp M +2 -4 kstars/skyobjects/ksplanetbase.h M +4 -8 kstars/skyqpainter.cpp M +10 -10 kstars/texture.cpp M +57 -44 kstars/texturemanager.cpp M +32 -33 kstars/texturemanager.h http://commits.kde.org/kstars/4bb749b5842f0fd7838dc5a5f068dd39a0296bb1 |