Lines 1-20
Link Here
|
1 |
--- r_part.c.orig Wed Feb 4 23:15:44 2004 |
1 |
--- r_part.c.orig Wed Jan 7 00:39:44 2004 |
2 |
+++ r_part.c Wed Feb 4 23:32:01 2004 |
2 |
+++ r_part.c Mon Jul 19 11:54:15 2004 |
3 |
@@ -60,6 +60,17 @@ |
3 |
@@ -58,7 +58,7 @@ |
4 |
|
4 |
|
5 |
#if !id386 |
5 |
vec3_t r_pright, r_pup, r_ppn; |
|
|
6 |
|
7 |
-#if !id386 |
8 |
+#if !defined(id386) && !defined(GLQUAKE) |
6 |
|
9 |
|
7 |
+#define PARTICLE_Z_CLIP 8.0 |
|
|
8 |
+float xcenter, ycenter; |
9 |
+int d_vrectx, d_vrecty, d_vrectright_particle, d_vrectbottom_particle; |
10 |
+short *d_pzbuffer; |
11 |
+unsigned int d_zwidth; |
12 |
+pixel_t *d_viewbuffer; |
13 |
+#define MAXHEIGHT 1024 |
14 |
+int d_scantable[MAXHEIGHT]; |
15 |
+int d_y_aspect_shift, d_pix_min, d_pix_max, d_pix_shift; |
16 |
+int screenwidth; |
17 |
+ |
18 |
void D_DrawParticle (particle_t *pparticle) { |
10 |
void D_DrawParticle (particle_t *pparticle) { |
19 |
vec3_t local, transformed; |
11 |
vec3_t local, transformed; |
20 |
float zi; |
|
|