source: trunk/source/visualization/OpenGL/History@ 1346

Last change on this file since 1346 was 1346, checked in by garnier, 15 years ago

before tag

File size: 41.1 KB
Line 
1$Id: History,v 1.193 2010/11/13 10:28:40 allison Exp $
2-------------------------------------------------------------------
3
4 =========================================================
5 Geant4 - an Object-Oriented Toolkit for Simulation in HEP
6 =========================================================
7
8 Category History file for visualization/OpenGL
9 ----------------------------------------------
10This file should be used by G4 developers and category coordinators
11to briefly summarize all major modifications introduced in the code
12and keep track of all category-tags.
13It DOES NOT substitute the CVS log-message one should put at every
14committal in the CVS repository !
15
16 ----------------------------------------------------------
17 * Reverse chronological order (last date on top), please *
18 ----------------------------------------------------------
19
2013th November 2010 John Allison (opengl-V09-03-10)
21- Tagged.
22
2310th November 2010 John Allison
24- G4OpenGLStoredSceneHandler.cc: Added commented out debug lines.
25- G4OpenGLStoredSceneHandler.hh: Corrected misleading comment lines.
26- G4OpenGLXViewer.cc: Protected output with G4VisManager::GetVerbosity.
27
288th November 2010 John Allison (opengl-V09-03-09)
29- G4OpenGLStoredSceneHandler:
30 o Removed fDisplayListBase (not needed; display list ids ARE re-used).
31 o Improved display list limit message.
32
337th November 2010 John Allison
34- G4OpenGLViewerMessenger.cc: Improved messages.
35
366th November 2010 John Allison
37- G4OpenGLViewerMessenger.cc: displayListLimit>=10000.
38- G4OpenGLStoredSceneHandler:
39 o Made all display list management variables static.
40 o Bug fix: reset fMemoryForDisplayLists flag.
41
425th November 2010 John Allison
43- G4OpenGLStoredSceneHandler, G4OpenGLViewerMessenger:
44 o Introduced a display list limit to avoid memory exhaustion.
45 o Introduced /vis/ogl/set/displayListLimit.
46
478th October 2010 Laurent Garnier
48- G4OpenGQtViewer.cc:
49 o Add menu for changing text color, default color, background color
50 o Toogle projection now call directly command instead of redefinding it
51
526th October 2010 John Allison (opengl-V09-03-08 with co-working tags...)
53- Co-working tags: interfaces-V09-03-12 + config-V09-03-08
54- G4OpenGLStoredViewer.cc:
55 o Added default colour and default text colour to list of parameters
56 that trigger a kernel visit.
57
585th October 2010 John Allison
59- G4OpenGLStoredViewer.cc: Time-slices fade to background colour.
60
615th October 2010 Laurent Garnier
62- Change lots of shortcuts in Qt
63- Add 'google earth like' rotation
64
6523th June 2010 Laurent Garnier
66- G4OpenGLImmediate/StoredQtViewer : Fix compilation warnings
67- G4OpenGLQtViewer : Add protection on Vis Tab without UI Qt
68
694th June 2010 Laurent Garnier (opengl-V09-03-07)
70- G4OpenGLImmediate/StoredQtViewer : Add protection against multiple
71 repaint call. Add protection against resizeGl with bad values
72
733rd June 2010 John Allison (opengl-V09-03-06)
74- G4OpenGLImmediateSceneHandler: Re-instate
75 // Make sure screen corresponds to graphical database...
76 if (fpViewer) {
77 fpViewer -> SetView ();
78 fpViewer -> ClearView ();
79 fpViewer -> DrawView ();
80 }
81 I was wrong - it *is* necessary. If not there, events are not refreshed.
82 So this and similar changes below are all back to geant4-09-03, including
83 glFlush, which is still a big performance penalty on Mac's Snow Leopard.
84
853rd June 2010 John Allison (opengl-V09-03-05)
86- Restored following files to geant4-09-03 in interests of stable behaviour:
87 o G4OpenGLStoredSceneHandler.cc
88 Restored code removed in opengl-V09-03-03:
89 // Make sure screen corresponds to graphical database...
90 if (fpViewer) {
91 fpViewer -> SetView ();
92 fpViewer -> ClearView ();
93 fpViewer -> DrawView ();
94 }
95 o G4OpenGLStoredXViewer.cc:
96 Restore to geant4-09-03. Restored code removed in opengl-V09-03-03:
97 } else { // ADD TO AVOID KernelVisit=1 and nothing to display
98 DrawDisplayLists ();
99 FinishView ();
100- Note: G4OpenGLImmediateSceneHandler: Same code commented out. I think
101 it's not necessary for immediate mode.
102
10330th May 2010 John Allison (opengl-V09-03-04)
104- G4OpenGLSceneHandler: Added AddCompound(const G4VDigi&).
105
10629th May 2010 John Allison (opengl-V09-03-03)
107- G4OpenGLImmediateSceneHandler.cc, G4OpenGLStoredSceneHandler.cc:
108 Removed the following from ClearTransientStrore (was causing
109 unnecessary drawing and flipping buffers?):
110 // Make sure screen corresponds to graphical database...
111 if (fpViewer) {
112 fpViewer -> SetView ();
113 fpViewer -> ClearView ();
114 fpViewer -> DrawView ();
115 }
116- G4OpenGLStoredXViewer.cc:
117 Commented out as follows in DrawView (was causing extra buffer swap,
118 thus showing bad picture; can't recall why it was introduced):
119 } else { // ADD TO AVOID KernelVisit=1 and nothing to display
120 //DrawDisplayLists (); ????????? (JA)
121 //FinishView (); ????????? (JA)
122
12326th May 2010 Laurent Garnier (opengl-V09-03-02)
124 - G4OpenGLQtViewer : Some improvments with auto rotation mode.
125
12620th May 2010 Laurent Garnier (opengl-V09-03-01)
127 Co-working tag : intercoms-V09-03-01, interfaces-V09-03-02
128 - GNUMakefile, G4OpenGLQtViewer : Better inclusion of new tabs in UI part
129
13011th May 2010 John Allison (opengl-V09-03-00)
131- G4OpenGLSceneHandler:
132 o Use generic section and cutaway algorithm.
133 o Follow change in generic section and cutaway interface.
134- G4OpenGLViewer.cc:
135 o Use generic section and cutaway algorithm.
136 o Fix compiler warning (*p++).
137 o Replace strdup by local inline code.
138
13929th April 2010 Laurent Garnier
140 - G4OpenGLSceneHandler : Speed Improvment by drawing vector of
141 markers instead one by one
142
14327th April 2010 Laurent Garnier
144 - G4OpenGLStoredXmViewer : remove viewer form list at destruction
145 - G4OpenGLViewer : Fix a problem when printing in gl2ps
146
1479th March 2010 Laurent Garnier
148 - G4OpenGLViewer : Fix clipping when resizing non square size windows
149 Remove error message when no scene present.
150 - G4OpenGLImmediateQtViewer, G4OpenGLStoredQtViewer :
151 - Add some protections if viewer is in tab
152 - fix some redraw probems when focus was outside frame
153 - Add ShowView() and paintEvent() methods
154 - DrawView method is now the same in Store and Immediate mode
155 - G4OpenGLQtViewer : Add things for viewer in tabs
156
1573rd March 2010 Laurent Garnier
158- G4OpenGLViewer : Add protection against null pointer scene
159
16027th January 2010 Gabriele Cosmo
161- Fixed compilation warnings on G4OpenGLQtViewer and corrected compilation
162 error when using Qt-3.
163
1646th January 2010 Laurent Garnier (needs interfaces-V09-02-07 + laurent-QtUI_with_tabs_v1)
165- GNUMakefile : Add include for interfaces/basic
166- G4OpenGLQtWiewer : Integration into QtUI Tab
167
16817th November 2009 John Allison (opengl-V09-02-10)
169- Tagged for vis tag.
170
17117th November 2009 Gabriele Cosmo
172- Fixed problem in the generation of dependencies on Windows for some
173 files, due to redefinition of min and max macros from windows.h in
174 G4OpenGL.hh.
175- Fixed GNUmakefile.
176
1773rd November 2009 John Allison (opengl-V09-02-09 coworks greps-V09-02-03)
178- Tagged for system testing.
179
1803rd November 2009 Laurent Garnier
181- G4OpenGLImmediateQtViewer, G4OpenGLStoredQtViewer : Protec Qt4 method
182 introduce 13rd october 09 by ifdef
183
1843rd November 2009 John Allison
185- G4OpenGLXmPanningCallbacks: Fixed pView compilation problem.
186
18721 October 2009 Laurent Garnier
188 - G4OpenGLQtViewer : Prepare to attach viewer In UI
189
19021st October 2009 John Allison (opengl-V09-02-08 coworks greps-V09-02-02)
191- Added default AddCompound (const G4THitsMap<G4double>&) methods.
192 o Prevents warnings about hiding - calls G4VSceneHandler base class.
193
19415 October 2009 Laurent Garnier
195 - G4OpenGLViewer.cc : Fix a problem with printing. On mac OSX version
196 > 10.5.7? or Ubuntu > 9.04? AND with user account configure in french
197 (or canadian I believe), the decimal point character was defined by
198 "," (see LC_NUMERIC). This cause a problem on reading eps files.
199 Changed "," to "."
200
20113 October 2009 Laurent Garnier
202 - G4OpenGLImmediateQtViewer/StoredQtViewer : some cleaning
203 - G4OpenGLImmediateQtViewer : Remove picking to true at initialisation
204 - G4OpenGLQtViewer.cc : Fix a redraw problem on mac OS X 10.6
205 - G4OpenGLStoreQtViewer.cc,G4OpenGLImmediateQtViewer.cc : Fix width()
206 and height() problem on mac OS X 10.6
207
20829 September 2009 John Allison (opengl-V09-02-07)
209- Tagged.
210
21118 August 2009 Laurent Garnier
212 - G4OpenGLXmViewer : Fix a wrong initialization introduce by the
213 new way of handling window size hints (January 2009)
214
21529 July 2009, Laurent Garnier
216 - G4OpenGLQtViewer : Ensure the GL frame size will be correct
217 by setting a 0 size margin around
218
21927 July 2009, Laurent Garnier
220 - G4OpenGLStoredQtViewer : Remove picking to true at initialisation
221
22220 May 2009, Laurent Garnier (opengl-V09-02-06)
223 - Fixed compilation errors on WIN32-VC for WIN32 specific drivers.
224
22518 May 2009, Joseph Perl (opengl-V09-02-05)
226 - Correct G4OpenGLViewerMessenger.hh
227
22814 May 2009, Laurent Garnier (opengl-V09-02-04)
229 - G4OpenGLViewer : Add methods to manage print size and filename
230 - G4OpenGLViewerMessenger : Added /vis/ogl/set/printSize
231 - G4OpenGLViewerMessenger : Added /vis/ogl/set/printFilename
232 - G4OpenGLQtViewer.cc,G4OpenGLXmMainMenuBarCallback.cc, renaming
233 according to first point.
234
23513 May 2009, Laurent Garnier
236 - G4OpenGLStoredQtViewer.cc: Fix a second view redraw at ShowView() call
237 - G4OpenGLQtViewer : Remove unuseful variables, renaming others
238 - G4OpenGLViewer : Add method for resizing properly windows. Add methods
239 to get window width, height and to know if size has changed
240 - G4OpenGLQtViewer, G4OpenGLStoredQtViewer, G4OpenGLImmediateQtViewer,
241 G4OpenGLXmViewer, G4XmWindowsHandlingCallback, G4OpenGLXViewer :
242 Apply the previous changes.
243
2446 May 2009, Laurent Garnier
245 - G4OpenGLQtViewer.cc: Fix compilation warning and error with gcc4.4
246
24728th April 2009, John Allison
248 - G4OpenGLViewerMessenger.cc: Added return statement at end of every
249 "if (command == ..." statement. (Because of test for OGLS, it is
250 not elegant to use "if...else if...else" structure.)
251
25228th April 2009, Laurent Garnier
253 - G4OpenGLXViewer,G4OpenGLViewer : End of moving printEPS and associated
254 functions from GLXViewer to GLViewer.
255 - G4OpenGLXViewer :
256 - Remove debug methods
257 - Add check in SetView() method
258 - G4OpenGLViewer : Add a glReadBuffer before glReadPixel in grabPixel method
259
2608th April 2009, Laurent Garnier
261 - G4OpenGLBitmapStore.hh : BugFix correction for windows (introduce 2nd February ?)
262 - G4OpenGLViewer.hh : move methods in private
263 - G4OpenGLXViewer.hh : Add debug methods
264 - G4OpenGLImmediateXmViewer.cc, G4OpenGLStoredViewer.cc, G4OpenGLStoredXmViewer.cc,
265 G4OpenGLStoredXViewer.cc, G4OpenGLViewer.cc : Add debug messages
266 - G4OpenGLStoredXmViewer.cc,G4OpenGLStoredXViewer.cc, G4OpenGLStoredWin32Viewer.cc :
267 - Add a DrawDisplay list in case of KernelVisit=1 and nothing new to display.
268 - Add a flush at the end of the view.
269 - G4OpenGLViewer.cc :
270 - Improve the fix and resizing when X/Y size was even (lack of precision
271 in a /2)
272 - Set line/point size at a default size when printing.
273 - G4OpenGLXmWindowsHandlingCallbacks.cc : print method rename in printEPS
274 - G4OpenGLXViewer.cc : Lot of changes, try to debug it. Pb when printing in pixmap
275 mode on some windows size
276
2776th April 2009, Joseph Perl (opengl-V09-02-02, then opengl-V09-02-03)
278 - New tag to clean up all of the cases of files that changed only in the cvs id.
279
28024th March 2009, Laurent Garnier (opengl-V09-02-01)
281 - G4OpenGLViewer : Add a fix and resizing when X/Y size was even (lack of precision
282 in a /2)
283
28418th March 2009 John Allison
285- G4OpenGLViewerMessenger.cc: printMode and transparency are available
286 for all OGL windows (they were previously inadvertently hidden by
287 an OGLS requirement).
288
28916th March 2009, Laurent Garnier
290 - G4OpenGLViewer : Add a check on max viewport dimensions when setting size.
291
2924rd March 2009, Laurent Garnier
293 - G4OpenGLQtViewer:
294 - Suppress some warnings when saving file
295 - Changing size is now allowed when saving (to save with better resolution than screen size)
296 - G4OpenGLViewer:
297 - Some renaming for print methods to be more clear about Vectored and non Vectored
298 - Now using Gl2PS method to do PS (changes also in G4OpenGLXViewer and G4OpenGLQtViewer)
299 - Suppress unuseful printX methods (heritated form XViewer)
300 - Add methods to handle printVectored and NonVector cases
301 - G4OpenGLViewerMessanger : Changes methods to get new G4OpenGLViewer methods to print
302
3031st March 2009, Laurent Garnier
304 - Remplacing glBitmap by GL_POINTS to draw marker : Speed improvment
305 and gl2ps can now draw Markers.
306
30716 February 2009, Laurent Garnier
308 - Modifications in GNUMakefile for gl2ps.
309 - G4OpenGLViewer,G4OpenGLViewerMessenger.cc,G4OpenGLXmMainMenubarCallbacks.cc
310 ,G4OpenGLXmViewer.cc modified for gl2ps and some renaming "print" in
311 "printVectoredEPS"
312
3132nd February 2009 Laurent Garnier
314- Improve Anticipate headers declaration in all files
315- Factorize grabPixels function in G4OpenGLViewer
316- Begin of refactoring printEPS function
317
31822th January 2009 Laurent Garnier
319- Fix bug in ratio and geometry on X/Xm/Qt/Win32 viewers
320
32119th January 2009 Laurent Garnier
322- Change G4DEBUG definition by G4DEBUG_VIS_OGL
323
32412th January 2009 John Allison
325- G4OpenGLViewer.cc: Pick up X and Y window size hints to define viewport.
326
3272 December, Laurent Garnier
328 - G4OpenGLImmediateXmViewer,G4OpenGLStoredXmViewer,G4OpenGLXmViewer
329 G4OpenGLImmediateXViewer, G4OpenGLStoredXViewer, G4OpenGLXViewer,
330 G4OpenGLXmWindowHandlingCallbacks,
331 G4OpenGLImmediateQtViewer.cc, G4OpenGLStoredQtViewer, G4OpenGLQtViewer
332 G4OpenGLImmediateWin32Viewer.cc, G4OpenGLStoredWin32Viewer, G4OpenGLWin32Viewer
333 -> Replace WinSize by fWinSize and some improvments about size initialization
334
335 - G4OpenGLQtViewer.hh : Suppress WinSize private variable
336 - Now Could pass XString like 400x600-0+0 to viewers and set position and location. It
337 will work for Qt, X, Win32 for the moment.
338
33924 October, Laurent Garnier (opengl-V09-01-03)
340 - Change GEANT4_QT_DEBUG flag by QTDEBUG
341 - Suppress unuseful DEBUG messages
342
34312th October Laurent Garnier
344 - G4OpenGLQtExportDialog : improvments for Qt3"
345 - G4OpenGLQtViewer,G4OpenGLImmediateQtViewer,G4OpenGLStoreQtViewer : Add the name on OpenGlQt viewers
346 - G4OpenGLStoredQtViewer,G4OpenGLImmediateQt, G4OpenGLStoredQt : Change OGLSQT and OGLIQT by OGLSQt and OGLIQt
347
3482 October Laurent Garnier
349 - Fix a crash when there was no scene.
350
35128 July Laurent Garnier
352 - Fix a bug in XmRotation panel introduce in last commit by myself.
353
35420th June 2008 Laurent Garnier
355 - Correct some warnings
356 - Move rotation code of Xm and Qt in G4OpenGLViewer::rotateScene. Same code in now shared
357
35812th June 2008 Laurent Garnier
359 - Emit signals when moving/rotate scene, in order to get them in external app
360
36128th Mai 2008 Laurent Garnier
362 - Add mouse wheel zoom commands
363
36428th April 2008 Laurent Garnier
365 - Add better moc control/compilation step in GNUmakefile
366 - Fix a problem when launching QT VIS without QT UI (N02 for example)
367
36828th April 2008 John Allison (opengl-V09-01-02)
369- G4OpenGLStoredSceneHandler: Tidied constructors of nested classes.
370
3714th April 2008 John Allison (opengl-V09-01-01)
372- Fixed DBL_MAX problem in 2D drawing:
373 o changed G4OPENGL_DBL_MAX to G4OPENGL_FLT_BIG.
374- Fix gcc-4.3.0 compiler warnings.
375
37611th March 2008, Laurent Garnier
377 - Resolve QT3 compilation errors
378
37910th March 2008, Laurent Garnier
380 - Add a dialog panel to make movies (Right button->Actions->Movie parameters)
381 - Add ability to "auto rotate" volume launched with quick mouse move
382 - Lots of improvments for Qt3
383 - Improvments on moving steps with shortcuts
384 - Could now select between orthogonal/perspective view mode
385
3861st February 2008 John Allison
387 - G4OpenGLQtViewer.cc: Fix #ifdef QT protection.
388 - G4OpenGLSceneHandler.cc: Small improvement to logic of setting GL_LIGHTING.
389
39030th January 2008, Laurent Garnier
391 - Add moving camera on left/right/up/down arrown, going forward/backward
392 on SHIFT+up/down, zoom in with +/- keys
393 - Add a context menu entry for projection perspective/orthographic
394 - Fix some bugs on windows in export dialog
395
39615th January 2008, Laurent Garnier
397 - Fixed some layout problems on export dialog box
398 - Some improvements on exports formats
399 - Fix a bug in the help command : The clic callback on a item was not
400 working on windows
401 - Fix a crash at exit when launched on a MAC.
402 - EPS export format is now ready for Qt3
403 - Add Vectoriel EPS export format
404 - Fix an aspect ratio deformation when resize the widget
405 - Fix a crash at launch with leopard
406 - When selecting the "move" mouse action, this action was set even when
407 mouse button was released. Fixed : Now we should clic to have the move action
408 - GNUmakefile : Added a macro for moc file
409 - Moc files : Suppression of all theses files. They are now autogenerated
410 thanks to config/common.gmk
411
4124th January 2008 John Allison (opengl-V09-01-00)
413- Implemented extended 2D interface.
414
41530th November 2007 Laurent Garnier
416- Improvements for Qt3
417- moc files : Adding other versions for QT_MOC_REVISION 28,58 and
418 59, but this is not the right solution..
419
42019th November 2007 Joseph Perl (for Laurent Garnier) (opengl-V09-00-04)
421- Added GEANT4_QT_DEBUG flag to more places
422
42315th November 2007 John Allison (opengl-V09-00-03)
424- Re-introduced Qt files, now properly protected by cpp flags.
425- cpp flags also added to some other files not previously properly protected.
426
42715 Nov 2007, Laurent Garnier
428 - G4UIQt,G4Qt : Adding a GEANT4_QT_DEBUG flag to hide all debug messages
429 - G4UIQt,G4Qt : Compilation improvements for Qt3
430 - G4UIQt,G4Qt : Minors corrections on G4UIQt helpWidget
431
43214 Nov 2007, Laurent Garnier
433 - G4OpenGLStoredQtViewer.cc : Correction of a bug with mouse move event in
434 Qt4
435 - G4OpenGLQtExportDialog_moc.cc, G4OpenGLQtViewer.cc, G4OpenGLQtViewer_moc.cc :
436 Adding protection for Qt version between 4.0 and 4.2
437
43813th November 2007 John Allison (opengl-V09-00-02)
439- Removed Qt files from tag. File are still at head - need fixing.
440
44113 Nov 2007, Laurent Garnier
442 - G4UIQt,G4Qt : Moving all moc in one big file interface/G4UIQT_moc.cc,
443 including Qt3 and Qt4 moc support
444
44510th November 2007 John Allison (opengl-V09-00-01)
446- Moved WinSize_x, y to base class G4OpenGLViewer.
447- Minor improvement in guidance for /vis/ogl/printEPS.
448
44909 Nov 2007, Laurent Garnier
450 - G4UIQt,G4Qt : Change all include directive to be compatible with Qt3
451
45208 Nov 2007, Laurent Garnier
453 - moc_G4OpenGLQtExportDialog.cc move in G4OpenGLQtExportDialog_moc.cc
454 - moc_G4OpenGLQtViewer.cc move to G4OpenGLQtViewer_moc.cc
455
45627 Sept 2007, Laurent Garnier
457 - Adding sur files for G4UIQt driver :
458 - G4OpenGLImmediateQt.cc
459 - G4OpenGLImmediateQtViewer.cc
460 - G4OpenGLQtExportDialog.cc
461 - G4OpenGLQtViewer.cc
462 - G4OpenGLStoredQt.cc
463 - G4OpenGLStoredQtViewer.cc
464 - moc_G4OpenGLQtExportDialog.cc
465 - moc_G4OpenGLQtViewer.cc
466
46728th September 2007 lgarnier
468- first import of G4UI Qt files : Do not try to compil them
469
47021st August 2007 John Allison (opengl-V09-00-00)
471- Removed redundant G4OpenGLXViewerMessenger.
472
47325th May 2007 John Allison (opengl-V08-03-03)
474- G4OpenGLSceneHandler and G4OpenGLXViewerMessenger:
475 Fixed gcc-4.1.2 compiler warnings.
476
47725th May 2007 John Allison (opengl-V08-03-02)
478- G4OpenGLXViewer: Trapped glXMakeCurrent in Initialise function.
479
48024th May 2007 John Allison (opengl-V08-03-01)
481- Fixes for SUN.
482
48316th May 2007 John Allison (opengl-V08-03-00)
484- Fix compiler warnings on SLC4.
485- Bug fixes:
486 o Correct path /vis/ogl/set/printMode.
487 o Add SetView to pixmap screen dump ("/vis/ogl/set/printMode pixmap"
488 and "/vis/ogl/printEPS").
489
4908th May 2007 John Allison (opengl-V08-02-06)
491- Moved vectored PostScript printing to G4OpenGLViewer.
492- /vis/ogl/printEPS should work for all viewers, including Win32.
493- Introduced /vis/ogl/set/printMode vectored|pixmap, currently only
494 effective on X windows (and still somewhat buggy).
495
4964th April 2007 John Allison (opengl-V08-02-05 - needs visman-V08-02-04)
497- Implemented picking for OGLSX ( as well as OGLIX). Hopefully works
498 for OGL*Win32. Still doesn't work for OGL*Xm.
499
5003rd April 2007 John Allison (opengl-V08-02-04 - needs visman-V08-02-03)
501- G4OpenGLStoredSceneHandler:
502 o Re-organised display lists on a per-primitive basis, i.e., one
503 display list per primitive. (This is so that, except for text,
504 the colour - or, rather, intensity - can be brought out of the
505 display list into the TOList (Transient Object List) and
506 controlled for the Display-by-Time feature. Previously, if more
507 than one primitive were drawn between BeginPrimitives and
508 EndPrimitives, it would finish up all in one display list, colour
509 commands included. Rationalises and fixes a rare bug in the
510 Display-by-Time feature - see August 2006.)
511 o Added AddPrimitive(const G4Polymarker&) so that it is treated as
512 one primoitive to fit with the above re-organisation.
513- Implemented picking for OGLIX.
514
51525th March 2007 John Allison (opengl-V08-02-03)
516- Fix compiler warnings.
517
5188th February 2007 John Allison (opengl-V08-02-02)
519- Fixed Windows problem with DBL_MAX. (Introduced G4OPENGL_DBL_MAX.)
520- G4OpenGLXViewer.cc: Small bug fix in print(). (Context was switched
521 .but not switched back. Not serious, because context was always set
522 before normal drawing.)
523
5249th January 2007 John Allison (opengl-V08-02-01)
525- Implemented bitmap markers for MarkerSizeType == screen. (The old
526 polygon implementation remains for MarkerSizeType == world.)
527- Added G4OpenGLBitMapStore to assist the above.
528- G4OpenGLXViewer::CreateGLXContext:
529 o Bug fix: Added missing break in colormap lookup routine.
530
5315th January 2007 John Allison (opengl-V08-02-00)
532- G4OpenGLSceneHandler.cc:
533 o Followed change of signature of GetLineWidth in visman-V08-02-00.
534 o Minor efficiency improvements.
535
53621st November 2006 John Allison (opengl-V08-01-09)
537- Fixed compiler warnings.
538
5391st November 2006 John Allison (opengl-V08-01-08)
540- Replace /vis/oglx/set/printEPS by /vis/oglx/printEPS. The new command
541 actually initiates a print, rather than set a flag for printing.
542
54324th October 2006 John Allison (opengl-V08-01-07)
544- G4OpenGLStoredViewer.cc: Calculate light front horizon properly.
545- G4OpenGLViewerMessenger.cc: Make refresh depend on auto-refresh.
546
54719th September 2006 John Allison (opengl-V08-01-06)
548- Added time origin for light front.
549- Added /vis/ogl/set/transparency.
550- G4OpenGLStoredViewer.cc: Bug fix in time range acceptance.
551
5524th September 2006 John Allison (opengl-V08-01-05)
553- Implement cutaways.
554- Immediate mode: G4OpenGLImmediateSceneHandler.cc: Flush all
555 primitives (see detector being drawn).
556- /vis/oglx/set/printEPS: change parameter default to true.
557
55830th August 2006 John Allison (opengl-V08-01-04)
559- G4OpenGLSceneHandler:
560 o Implemented line width.
561 o Switched off back face culling when clipping so that the inside of
562 volumes can be seen.
563 o Added CreateSection/CutawayPolyhedron to exploit generic
564 sectioning (DCUT) and cutaways. Currently not activated due to
565 instabilities in BooleanProcessor. Local sectioning still active
566 but broken (at least on Mac) due to apparent change in effect of
567 clipping planes (polyhedron edges not reconstructed).
568 o Rationalised calculation of marker size.
569- G4OpenGLStoredSceneHandler:
570 o Fixed bug due to recursive calls of AddPrimitive (polymarkers -> markers).
571 o Pick up time range from G4VisAttributes.
572- G4OpenGLViewer(Messenger):
573 o Added position and colour to /vis/ogl/set/displayHeadTime.
574 o Added /vis/ogl/set/displayLightFront.
575- G4OpenGLStoredViewer.cc:
576 o Rationalised CompareForKernelVisit. (Local sectioning still active.)
577 o Added position and colour to DisplayHeadTime.
578 o Added DisplayLightFront.
579
58016th August 2006 John Allison (opengl-V08-01-03)
581- Corrected Solaris compilation error.
582- Added /vis/ogl/set/fade and displayHeadTime.
583
58414th August 2006 John Allison (opengl-V08-01-02)
585- Needs visman-V08-01-02.
586- G4OpenGLStored: Implemented display-by-time. Only available in
587 stored mode at present. Only implemented for circle, square,
588 polyline and polymarker at present, enough for currently available
589 trajectory models. Time is communicated via G4AttValues.
590- Added G4OpenGLViewerMessenger.
591- Added /vis/ogl/set/startTime and endTime of displayed objects.
592- All factories: Instantiated G4OpenGLViewerMessenger.
593- G4OpenGLViewer: Added fStart/EndTime.
594- G4OpenGLXViewer.cc: Graceful recovery from unexpected tokens in
595 spewPrimitiveEPS and spewSortedFeedback.
596
59717th July John Allison (opengl-V08-01-01)
598- Added /vis/oglx/set/printEPS (prints eps file on every update).
599
6003rd July 2006 John Allison (opengl-V08-01-00)
601- Elimination of redundant variable doublebuffer and implementation of
602 FinishView in all viewers.
603
60430th May 2006 Joseph Perl (opengl-V08-00-08)
605- G4OpenGLImmediateWin32Viewer: Removed tests on doublebuffer since that
606 variable seems to have random behavior and should be assumed false for
607 this viewer.
608
60929th May 2006 Joseph Perl (opengl-V08-00-07)
610- G4OpenGLWin32Viewer, G4OpenGLImmediateWin32Viewer, G4OpenGLStoredWin32Viewer:
611 Removed common FinishView and instead made separate FinishView for the two different
612 versions of this viewer since each wants a different buffer swapping behaviour.
613
61412th May 2006 John Allison (opengl-V08-00-06)
615- G4OpenGLWin32Viewer: Fixed buffer swapping behaviour.
616
61728th April 2006 John Allison (opengl-V08-00-05 - needs visman-V08-00-14)
618- G4OpenGLStoredX/Xm/Win32Viewer.cc: Fixed buffer swapping problem when
619 recomputing transients.
620
62124th April 2006 John Allison (opengl-V08-00-04)
622- Fixed compilation problem on Windows.
623
62419th April 2006 John Allison (opengl-V08-00-03)
625- G4OpenGLSceneHandler, G4OpenGLStoredSceneHandler and
626 G4OpenGLImmediateSceneHandler:
627 o Implemented Begin/EndPrimitives2D (needs visman-V08-00-12 and
628 greps-V08-00-02).
629 o Migrated to direct access to G4PhysicalVolumeModel.
630- G4OpenGLStoredX/Xm/Win32Viewer.cc: bug fix for conditional drawing
631 of display lists in DrawView.
632
63314th March 2006 John Allison (opengl-V08-00-02)
634- Refined display list building and re-drawing algorithm.
635 o G4OpenGLStoredSceneHandler::EndModeling: Changed to GL_COMPILE_AND_EXECUTE.
636 o Avoided unnecessary re-execution in DrawView (X, Xm and Win32).
637- G4OpenGLStoredSceneHandler::RequestPrimitives: Refined display list
638 re-use algorithm. In test19 with global culling off, numbers of
639 display lists used are:
640 o 191 No re-use:
641 o 73 Before this change: re-use except replicas (includes parameterised).
642 o 33 After this change: re-use except parameterised and replicas in radius.
643
64426th January 2006 John Allison (opengl-V08-00-01)
645- Coworks with visman-V08-00-04 (removed fModified).
646- Removed references to fModified.
647- Tidying: Removed unnecessary ClearView.
648- G4OpenGLSceneHandler.cc: Added some (commented out) code for
649 possible future implementation of 2D drawing.
650- G4OpenGLXViewer.cc: Improved exception printing.
651
65211th January 2006 John Allison (opengl-V08-00-00)
653- Improved efficiency: all DrawView's:
654 o Don't call ClearView.
655 o Set flag so SetView will not be called in ProcessView.
656 o Leave background colour to ClearView.
657- Used dynamic_cast<G4OpenGLViewer*>, no need for G4OpenGLViewerDataStore.
658- G4OpenGLXmViewerMessenger: Made a smart singleton; interrogates vis manager
659 for current viewer.
660
66124th November 2005 John Allison (opengl-V07-01-09)
662- Protected G4OpenGLXmViewerMessenger with #ifdef G4VIS_BUILD_OPENGLXM_DRIVER.
663
66422nd November 2005 John Allison (opengl-V07-01-08)
665- Added G4OpenGLXmViewerMessenger.
666- Corrected text position.
667- Made depth test for polyhedron GL_LEQUAL (slightly dominant).
668
66917th November 2005 Gabriele Cosmo
670- Fixed settings of background style for WIN32 viewers.
671
67213th November 2005 John Allison (opengl-V07-01-07)
673- Implemented X-Window-style geometry hints in G4OpenGLXViewer.
674
67513th October 2005 John Allison (opengl-V07-01-06)
676- Allowed any colour background.
677- Implemented non-uniform scaling.
678- Migration to <sstream>.
679
68029th September 2005 John Allison (opengl-V07-01-05)
681- Added G4OpenGLViewerDataStore to facilitate access of viewer data by
682 scene handler.
683- Re-implemented transparency button in OpenGLXm.
684
68513th September 2005 John Allison (opengl-V07-01-04 - needs visman-V07-01-02)
686- Implemented white background for all OGL viewers.
687- G4OpenGLSceneHandler.cc:
688 o Fixed hidden line removal (bug introduced in opengl-V07-01-02).
689 o Fixed treatment of triangular polygons for drawing of auxiliary/soft lines.
690 o Corrected GetTextColour(text).
691 o Corrected GetColour(polyhedron).
692
6935th September 2005 John Allison (opengl-V07-01-03)
694- Bug fix: stored transparent objects were being lost.
695
6962nd September 2005 John Allison (opengl-V07-01-02 - needs visman-V07-01-01)
697- Bug fix: edgeflags problem introduced with smooth shading in
698 opengl-V07-01-00.
699- Implementation of a "better algorithm" for the rendering of
700 transparent polyhedron objects. It renders all opaque objects
701 first, then renders the transparent objects with the depth buffer in
702 read-only mode (see OpenGL Programming Guide). It uses the new
703 facility in G4VSceneHandler::ProcessScene for an optional second pass
704 of the run-duration models in the scene. Note this algorithm is
705 still only an approximation. It will still give the wrong blended
706 colour if two transparent objects are rendered front first. For
707 nested transparent objects, this is unfortunate, because
708 G4PhysicalVolumeModel traverses Geant4's mother-daughter hierarchy
709 in such a way that mothers come first. Also, there is no guaranteed
710 relationship between the order of rendering and the depth of two
711 transparent objects if they are at the same level or in different
712 branches of the hierarchy. Still, the only error will be an
713 incorrect colour - the objects will still give the appearance of
714 transparency, so it's a pretty good algorithm. (An even better
715 algorithm would be to attempt to render the facets in depth order,
716 deepest first. But how do you calculate the depth - centre of area,
717 deepest corner? One can still imagine pathalogical cases that would
718 sometimes give the wrong colour. Also, for stored mode, the order
719 is fixed in a display list so when the user rotates the view, one
720 would lose the depth ordering. I think we have to accept that
721 blending in OpenGL is only ever an approximation. For accurate
722 blending, use RayTracer.)
723
72428th August 2005 John Allison (opengl-V07-01-01)
725- Half-way implementation of rendering of transparent polyhedron
726 objects. In this implementation, no account is taken of the order
727 of rendering. Transparent objects are rendered with depth testing
728 off so that objects behind can still be seen. But this means that
729 opaque objects in front do not obscure them - and they jolly well
730 should! A better algorithm is to render all opaque objects first,
731 then render the transparent objects with the depth buffer in
732 read-only mode (see OpenGL Programming Guide). This is going to
733 take a little more thought - see opengl-V07-01-02.
734
73520th July 2005 John Allison (opengl-V07-01-00)
736- Introduced smooth shading, taking advantage of hitherto un-noticed
737 feature of HepPolyhedron::GetNextFacet that calculates the normals
738 at each vertex so that curved surfaces are rendered more
739 realistically (Gouraud shading).
740- G4OpenGLImmediateSceneHandler.cc: Removed unnecessary #include's.
741- G4OpenGLXmViewer.cc: Fixed to use window size hints. This changes
742 the default window size. It used to be 400x400, hardcoded in
743 G4OpenGLXmViewer.cc, but now it picks up the
744 G4ViewParameters::GetWindowSizeHintX/Y, which defaults to 600x600.
745 The user may change it on the command line, e.g:
746 /vis/open OGLSXm 500
747 or
748 /vis/viewer/create ! ! 500
749
75030th May 2005 John Allison (opengl-V07-00-03)
751- Fixed compilation problem in OpenGL on SUN. (Replaced multimap by
752 map of vectors in G4OpenGLFontBaseStore.)
753
7544th May 2005 John Allison (opengl-V07-00-02)
755- Restored sequence Set/Clear/DrawView in ClearTransientStore. (It
756 was taken out to prevent recursive calling, but that seems to be OK,
757 and it is needed to implement refresh at end of event/run.)
758
75922nd April 2005 John Allison (opengl-V07-00-01)
760- Rationalised work of opengl-V07-00-00. Functionality unchanged.
761 o G4OpenGLViewer.hh: Created virtual void CreateFontLists(){}.
762 o In all concrete viewers, added call to CreateFontLists().
763 o Moved font code for X to G4OpenGLXViewer::CreateFontLists().
764 o There is no longer a need to implement in the XmViewer, since it
765 now inherits. Thus the font code now only appears once for X.
766 o Awaiting implementation for WIN32.
767
76817th April 2005 John Allison (opengl-V07-00-00)
769- Based on vis-V07-00-13.
770- Implemented text for X-Windows viewers. Uses glXUseXFont, which
771 creates display lists for nominated fonts. Simple-minded scheme in
772 which each viewer creates its own font display lists for a variety
773 of sizes, which are accessed by the scene handler through a new
774 class, G4OpenGLFontBaseStore. Affected methods:
775 G4OpenGLXViewer::CreateMainWindow()
776 G4OpenGLXmViewer::CreateMainWindow()
777 G4OpenGLSceneHandler::AddPrimitive (const G4Text& text)
778
77918th November 2004 John Allison (opengl-V06-02-07)
780- Removed redundant fLastVP from G4OpenGLStoredSceneHandler.
781
78215th November 2004 Guy Barrand
783- G4OpenGLWin32Viewer::ShowView : glFlush was not sufficient
784 to see trajectories (for example with N03). Correct so that
785 ShowView do a FinishView that does : glFlush, wglSwapBuffer
786 and empty the Windows message queue.
787
78822nd September 2004 John Allison (opengl-V06-02-06)
789- doxygen output to tmp area.
790- Trap non-regular polyhedrons.
791
79213th September 2004 Gabriele Cosmo (opengl-V06-02-05)
793- G4OpenGLTransform3D.cc: simplified implementation for GetMatrix()
794 to allow for porting on CLHEP-1.9.X series.
795
79623rd July 2004 John Allison
797- Draws auxiliary edges if required.
798- Added auxiliary edge button.
799
80016th July 2004 John Allison (opengl-V06-02-04)
801- Refinements to hidden line, hidden surface removal.
802
80314th July 2004 John Allison (opengl-V06-02-03)
804- Removed superfluous #include "G4VisManager.hh" from G4OpenGLXmViewer.cc.
805
80613th July 2004 John Allison (opengl-V06-02-02)
807- Hidden line *and* hidden surface removal now works.
808
8099th July 2004 John Allison (opengl-V06-02-01)
810- Fixed long-standing problem with hidden line removal.
811- Improved messages on failure to get visual.
812- Added GLX_STENCIL_SIZE explicit request to visual attributes - most
813 systems provided by default anyway, so no effect.
814
8151st July 2004 John Allison (opengl-V06-02-00)
816- Rationalised G4OpenGLSceneHandler ready for hidden line removal.
817- Bug fix in G4OpenGLXmPanningCallbacks.cc for dolly control.
818
81918th June 2004 Gunter Folger (geant4-06-02)
8209th June 2004 Gabriele Cosmo (vis-V06-01-03)
8217th June 2004 Gabriele Cosmo (vis-V06-01-02)
822- GNUmakefile and disclaimer changes - see visualization/History.
823
8249th April 2004 John Allison (vis-V06-01-01 + interfaces-V06-01-00)
825- Tagged OpenGL as below. Joint with interfaces-V06-01-00.
826
8277th April 2004 Guy Barrand
828- visualization/OpenGL/* : use the G4OpenGL.hh file.
829- Added : visualization/OpenGL/include/G4OpenGL.hh to encapsulate
830 the include of gl/gl.h and gl/glu.h that may be platform dependant.
831 It permits to rm some #ifdef WIN32 spread in the code. It opens also
832 the way to the usage of the Apple OpenGL on a Mac.
833
83417th February 2004 John Allison (opengl-V06-00-00)
835- Fixed bug #581: wrong order of statements in
836 G4OpenGLXViewer::~G4OpenGLXViewer (see bug report).
837
8384th October 2003 Gabriele Cosmo (vis-V05-02-01)
839- GNUmakefile:
840 o replaced "digits+hits" with "digits_hits".
841- Coworks with "geometry-V05-02-00" and "digits_hits-V05-02-00".
842
84322nd September 2003 John Allison (vis-V05-02-00, greps-V05-02-00)
844- Cosmetic change to regularise names:
845 o changed _Feedback3Dcolo to G4OpenGLXViewerFeedback3Dcolor.
846 o changed _DepthIndex to G4OpenGLXViewerDepthIndex.
847
84823rd June 2003 Guy Barrand (opengl-V05-01-02)
849- Commit a first implementation of G4OpenGLWin32Viewer.
850
85110th June 2003 Gabriele Cosmo (opengl-V05-01-01)
852- More fixes for warnings in viewers classes.
853- Added inclusion of <windows.h> for WIN32 platforms when GL headers
854 are included.
855
85605th June 2003 Gabriele Cosmo (opengl-V05-01-00)
857- Fixes for porting compilation on WIN32:
858 o G4OpenGLWin32Viewer[.hh.cc]: removed inclusion of <GL/glx.h>.
859 o G4OpenGLViewer.cc: replaced local variables near/far with pnear/pfar
860 since declared 'obsolete' in WIN32 platforms.
861
86227th November 2002 John Allison (vis-V04-01-08)
863- Improved algorithm of CompareForKernelVisit.
864
86511th November 2002 John Allison (opengl-V04-01-02)
866- Corrected inclusion of G4OpenGLXViewer #ifdef X_DRIVER.
867- Added G4OpenGLSceneHandler::AddThis for trajectories and hits - simply
868 call default but there as a marker and encourager.
869- Added tracking and digits+hits/hits to GNUmakefile.
870
87116th October 2002 John Allison (opengl-V04-01-01)
872- Fix for WIN32. Now compiles but viewer not implemented.
873
87424th June 2002 John Allison (opengl-V04-01-00)
875- Further cosmetic changes in G4OpenGLXViewer.cc for DEC compiler.
876
87710th June 2002 John Allison (opengl-V04-00-03)
878- Cosmetic changes for SUN-CC in G4OpenGLXmConvenienceRoutines.cc.
879
8806th June 2002 John Allison (opengl-V04-00-02)
881- Cosmetic changes for GNU compiler in G4OpenGLXViewer.cc.
882
88323rd February 2002 John Allison (opengl-V04-00-01)
884- Changes to encourage compilation on Windows in preparation for
885 implementation of G4OpenGLWin32Viewer. Removed spurious includes of
886 glx.h, unistd.h and assert.h.
887
88824th August 2001 John Allison (vis-V03-02-13)
889- Limited the printing of warnings in
890 G4OpenGLSceneHandler::AddPrimitive (const G4Text& text).
891
89214th August 2001 John Allison (vis-V03-02-11)
893- Improved KernelVisitDecision.
894- Fixed a few small bugs in multiple "stored" viewers, but see next item.
895- There's an outstanding bug in OpenGL Stored. If there is more than
896 one viewer controlled by a scene handler, after a ClearStore on the
897 scene handler, e.g., with /vis/scene/notifyHandlers, the first
898 viewer to get refreshed should trigger the display list rebuild, but
899 the second need not. However, when the second viewer's turn comes,
900 the display lists are there, and are called, e.g.,
901 G4OpenGLStoredXViewer::DrawView calls
902 G4OpenGLStoredViewer::DrawDisplayLists that calls glCallList, but
903 nothing appears on the screen. To overcome this there is some
904 temporary code in G4VViewer::NeedKernelVisit which marks *all*
905 viewers to force a rebuild. To see the symptoms, comment out that
906 temporary code and issue these commands:
907 /vis/verbose c
908 /control/verbose 2
909 /vis/scene/create
910 /vis/scene/add/volume
911 /vis/sceneHandler/create OGLSX
912 /vis/viewer/create ! ! 1
913 /run/beamOn
914 /vis/viewer/create ! ! 1
915 /vis/viewer/select viewer-0
916 /vis/viewer/viewpointThetaPhi 20 20
917 /vis/viewer/select viewer-1
918 /vis/viewer/viewpointThetaPhi 40 40
919 /vis/viewer/set/style surface
920 /vis/viewer/refresh
921 /vis/viewer/select viewer-0
922 /vis/viewer/refresh
923 /vis/viewer/select viewer-1
924 /vis/viewer/set/style wireframe
925 /vis/scene/notifyHandlers
926 You may have to do this too:
927 /vis/viewer/select viewer-0
928 /vis/scene/notifyHandlers
929 One of the viewers is empty. Curious!!
930
9319th August 2001 John Allison (vis-V03-02-10-00)
932- Implemented G4OpenGLStoredSceneHandler::ClearTransientStore()
933- Removed G4OpenGLSceneHandler::AddPrimitive (const G4Polymarker&) (it only
934 invoked G4VSceneHandler::AddPrimitive (const G4Polymarker&) which is
935 picked up by inheritance anyway.
936- Removed lots of unnecessary header files from G4OpenGLStoredSceneHandler.cc.
937- Corrected order of calling base class functions in
938 G4OpenGLStoredSceneHandler::Begin/EndModeling.
939
94024th July 2001 John Allison (vis-V03-02-06)
941- G4OpenGLSceneHandler::AddPrimitive (const G4Text&) handles transformation.
942
94314th July 2001 John Allison (opengl-V03-02-00)
944- Fixed crash in optimised mode: added Initialise() to viewers so
945 that windows are opened after viewers are fully constructed.
946
9472nd April 2001 John Allison (opengl-V03-00-01 wrt vis-V03-00-09)
948- Tidied G4OpenGLXmViewer callback code. Removed superfluous header files.
949
9507th March 2001 John Allison
951- Changed char* to const char* in many places and that gave problems in
952 calls to Xt and Xm. Hope all's OK. Differences:
953 cvs diff -r vis-V03-00-06 vis-V03-00-07
954
95525th January 2001 John Allison (opengl-V03-00-00)
956- Implemented running re-calculation of up-vector in the case of "object
957 rotation" (lights move with camera) to prevent "flipping" of view when
958 camera passes through up-vector. Note that the default is "camera
959 rotation" (lights do not move with camera, i.e., remain fixed relative
960 to object) so the default is that this "flipping" can happen. To set
961 "object rotation" (lights move with camera) use
962 /vis/lights/move_with_camera true (soon to be
963 /vis/viewer/set/lights move-with-camera) or click "Object" radio button
964 on Rotation Panel in OpenGLXm mode.
965- Changed some objects to references for efficiency. E.g.:
966 const G4Vector3D& vp = pView->fVP.GetViewpointDirection ().unit ();
967
96822nd May 2000 John Allison (opengl-V01-01-00)
969- Fixed slow response of 2nd window of OpenGLXm. Worked around Mesa bug
970 by sharing static visuals in G4OpenGLXViewer (Guy Barrand):
971 static XVisualInfo* vi_single_buffer;
972 static XVisualInfo* vi_double_buffer;
973- Removed ChooseVisual from G4OpenGLXmViewer.cc - done in base class
974 G4OpenGLXViewer.
975- Protected double deletion of window in destructors of G4OpenGLXmViewer
976 and G4OpenGLXViewer (Guy Barrand).
977- Changed requested bits per colour to r,g,b = 1,1,1 in G4OpenGLViewer.cc.
978- Corrected order of CreateMainWindow() and InitializeGLView() in X*Viewer
979 constructors.
Note: See TracBrowser for help on using the repository browser.