-rw-r--r-- | src/controller/clear_selection.sqc | 9 | ||||
-rw-r--r-- | src/controller/exp004processhits.c | 6 | ||||
-rw-r--r-- | src/controller/keyboard.c | 10 | ||||
-rw-r--r-- | src/controller/selection_from_db.sqc | 6 | ||||
-rw-r--r-- | src/model/density_legend_geometry.c | 20 | ||||
-rw-r--r-- | src/model/exp004state.h | 7 | ||||
-rw-r--r-- | src/model/protein_geometry.c | 2 | ||||
-rw-r--r-- | src/view/exp004geometry.c | 26 | ||||
-rw-r--r-- | src/view/exp004init.c | 3 |
9 files changed, 59 insertions, 30 deletions
diff --git a/src/controller/exp004processhits.c b/src/controller/exp004processhits.c index 264bd46..418f23a 100644 --- a/src/controller/exp004processhits.c +++ b/src/controller/exp004processhits.c | |||
@@ -1,5 +1,6 @@ | |||
1 | #define GL_GLEXT_PROTOTYPES | 1 | #define GL_GLEXT_PROTOTYPES |
2 | #include "../view/exp004state0.h" | 2 | #include "../view/exp004state0.h" |
3 | #include "../model/map_geometry.h" | ||
3 | #include "exp004processhits.h" | 4 | #include "exp004processhits.h" |
4 | #include "selsave.h" | 5 | #include "selsave.h" |
5 | #include <stdio.h> | 6 | #include <stdio.h> |
@@ -42,5 +43,10 @@ exp004processhits (GLint hits, GLuint buffer[]) | |||
42 | sizeof (S.base_colors_data), S.base_colors_data, | 43 | sizeof (S.base_colors_data), S.base_colors_data, |
43 | GL_STATIC_DRAW); | 44 | GL_STATIC_DRAW); |
44 | 45 | ||
46 | /* | ||
47 | * Rebuild the display list for the map. | ||
48 | */ | ||
49 | map_geometry (); | ||
50 | |||
45 | return; | 51 | return; |
46 | } | 52 | } |