Commit Log (Page 94 of 255)

back to main page

Pages: << Previous 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 Next >>

Summary Period: 2002-04-19 to 2002-04-11 (Commits 8045-8094 of 12744)

norman 2002-04-19 00:25

added freeraider logo

0 lines of code changed in:

jorrit 2002-04-17 15:45

Continued the work. The basic polygon filler (based on XOR
fill) appears to work now.

18 lines of code changed in:

jorrit 2002-04-17 13:05

Started working on new XOR buffer which *might* (if all goes
well) replace the c-buffer. Nothing functional yet though.

3 lines of code changed in:

philwyett 2002-04-17 10:38

- Fix of SELECT by Erik Namtvedt

1 lines of code changed in:

philwyett 2002-04-17 10:28

Minor fix

0 lines of code changed in:

philwyett 2002-04-17 10:19

- Update of his plugin by Erik Namtvedt

Adds:

- Removed Set ();
- Added doxygen comments.
- General cleanup.

295 lines of code changed in:

philwyett 2002-04-16 23:22

- Added LGPL copyrights. and did some minor code cleaning.

99 lines of code changed in:

norman 2002-04-16 18:11

Richard Liu reported compilation failure since solaris has munmap declared slightly different.
I added #ifdef OS_SOLARIS to get around that.

4 lines of code changed in:

philwyett 2002-04-16 10:13

- Minor fix. "friend csNetworkSocket2" now "friend class csNetworkSocket2".

1 lines of code changed in:

jorrit 2002-04-16 10:01

Fix.

1 lines of code changed in:

jorrit 2002-04-16 09:45

Release of 0.94r002.

53 lines of code changed in:

mreda 2002-04-16 08:20

Add __volatile__ to PowerPC am stuff (and changed asm to __asm__)

2 lines of code changed in:

philwyett 2002-04-16 06:04

- Added some and updated .cvsignore 's.

16 lines of code changed in:

neverjade 2002-04-15 21:58

Updated definitions with new error codes, and added GetError to the interface.

6 lines of code changed in:

neverjade 2002-04-15 21:57

Added GetError() for awsSink so that you can tell if the last operation caused an error.

20 lines of code changed in:

jorrit 2002-04-15 21:00

Removed the fix in csTextureTrans::compute_texture_space() I added
yesterday. Instead uses __volatile__ keyword with the asm
statements for qsqrt() and qisqrt(). This forces the compiler to
keep the code intact which seems to avoid the bug with
qisqrt() reported yesterday. I also did a small benchmark to see
if adding __volatile__ has a bad effect and I didn't notice an
obvious speed decrease. Thanks to Matt Reda for suggesting
the __volatile__ keyword.

17 lines of code changed in:

norman 2002-04-15 20:01

replaced two new occurences of static csClipInfo blah[100] with the CS_STATIC_* macros and magically it does no longer segfault at exit in walktest

5 lines of code changed in:

jorrit 2002-04-15 13:12

s- Disabled the use of DrawPolygonMultiTexture() in OpenGL renderer
even if multi-texture is enabled. DrawPolygonMultiTexture() is
obsolete and cannot correctly support super lightmaps. It should
never be used. I leave the code in cvs for now as a reference
for future multi-texture implementations.
- Enabled multi-texture again in GeForce specific OpenGL configuration.

19 lines of code changed in:

norman 2002-04-14 23:10

lookup for windowdefinition looped forever if def is not present, because the double linked list is a circular list :)

3 lines of code changed in:

cbayle 2002-04-14 21:20

Changed size_t in socklen_t to allow compile on ia64 and s390

2 lines of code changed in:

res2002 2002-04-14 20:28

updated a comment

6 lines of code changed in:

res2002 2002-04-14 20:26

translucent polys are lit by dynamic lights in single-texture mode

5 lines of code changed in:

res2002 2002-04-14 20:13

lightmap mean lighting now includes pseudo-dynamic lights

34 lines of code changed in:

matzebraun 2002-04-14 12:50

3ds2lev update: Now doesn't crash anymore for empty objects and outputs starting points

90 lines of code changed in:

philwyett 2002-04-14 10:30

- Philip Wyett eliminated some minor MSVC compiler warnings in 3ds2lev.

9 lines of code changed in:

philwyett 2002-04-14 09:54

- Improved MSVC memcpy replacement to handle 'short' more efficiently.

34 lines of code changed in:

jorrit 2002-04-14 08:48

In one version of csTextureTrans::compute_texture_space()
there were two calls to qisqrt() (equivalent to 1/sqrt()).
With gcc 2.96 on linux and optimize -O2 compile the second
qisqrt() would fail unless the first one is replaced with
1/qsqrt() (debug mode and -O are fine). I have no idea
why this is. For now I just replaced the first qisqrt()
with 1/qsqrt() but this needs further investigation.

22 lines of code changed in:

philwyett 2002-04-13 19:40

- Reorganized how/where window styles are handled.

- Also cleaned up the code a bit. Bringing it back into line with
CS coding standard.

78 lines of code changed in:

matzebraun 2002-04-13 16:31

added a camera file for the newsky terrain bug description

9 lines of code changed in:

res2002 2002-04-13 14:56

- canvas is only set topmost in FS mode

4 lines of code changed in:

philwyett 2002-04-13 09:23

- Fixed bug in win32 GL canvas. Our canvas was not being set topmost, which allowed
the desktop/taskbar to leak through and become viewable while GL test were being
performed and making things look not too good at all.

6 lines of code changed in:

jorrit 2002-04-13 07:34

Two new projects.

23 lines of code changed in:

res2002 2002-04-13 02:04

- small fix to avoid unwanted holes on keycolored textures & a dark lightmap

5 lines of code changed in:

res2002 2002-04-13 01:51

- a couple of visual errors w/ multitexturing magically disappeared
after adding a 'glEnable (GL_TEXTURE_2D)' ...
- queues are flushed before drawing a multitex'ed poly; eliminates some errors, too

14 lines of code changed in:

jorrit 2002-04-12 22:07

Note about OpenGL problems with 0.94.

12 lines of code changed in:

jorrit 2002-04-12 21:44

Reverted my change earlier because it breaks cs-config. I don't understand
why though.

12 lines of code changed in:

res2002 2002-04-12 21:39

- fixed garbled metablobs
- fixed some transparency issues

67 lines of code changed in:

res2002 2002-04-12 21:24

disabled multitexturing

4 lines of code changed in:

res2002 2002-04-12 19:36

added a comment about GetArray()

4 lines of code changed in:

philwyett 2002-04-12 14:31

- Minor fix

1 lines of code changed in:

philwyett 2002-04-12 14:22

- Fix. Plugin should now compile correctly with Win32 GCC

3 lines of code changed in:

jorrit 2002-04-12 14:03

Fixed small memory wastage in OpenGL renderer.

3 lines of code changed in:

jorrit 2002-04-12 11:35

sAdded a fix to 'make csconfig' so that it also works on Win98
now. The problem was that redirecting to out/csconfig.tmp works
on Win2K and higher but not on Win98 (forward slashes).

22 lines of code changed in:

sunshine 2002-04-12 09:51

Automated Texinfo @node and @menu repair.

3 lines of code changed in:

norman 2002-04-11 23:38

indented freefnt2's helpline

1 lines of code changed in:

norman 2002-04-11 23:36

indented odivx4 helpline

1 lines of code changed in:

norman 2002-04-11 23:32

indented joylins helpline

1 lines of code changed in:

norman 2002-04-11 23:31

indented ensocket helpline

1 lines of code changed in:

norman 2002-04-11 23:30

indented the netut helpline

1 lines of code changed in:

cbayle 2002-04-11 23:10

Added support for s390

1 lines of code changed in:

Pages: << Previous 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 Next >>


Generated by StatCvs v0.2-dev