summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/d3d/DDrawPROCS.c
blob: a02a89debbb6feb79b4498beb6cc123457fc9bae (plain)
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/*===========================================================================*/
/*                                                                           */
/* Mesa-3.0 DirectX 6 Driver                                	             */
/*                                                                           */
/* By Leigh McRae                                                            */
/*                                                                           */
/* http://www.altsoftware.com/                                               */
/*                                                                           */
/* Copyright (c) 1999-1998  alt.software inc.  All Rights Reserved           */
/*===========================================================================*/
#include "D3DMesa.h"
/*===========================================================================*/
/*  This call will clear the render surface using the pixel info built from  */
/* the surface at creation time.  The call uses Lock/Unlock to access the    */
/* surface.  The call also special cases a full clear or a dirty rectangle.  */
/*  Finally the call returns the new clear mask that reflects that the color */
/* buffer was cleared.                                                       */
/*===========================================================================*/
/* RETURN: the original mask with the bits cleared that represents the buffer*/
/* or buffers we just cleared.                                               */
/*===========================================================================*/
GLbitfield ClearBuffers( GLcontext *ctx, GLbitfield mask, GLboolean all, GLint x, GLint y, GLint width, GLint height )
{
   D3DMESACONTEXT *pContext = (D3DMESACONTEXT *)ctx->DriverCtx;
   DDSURFACEDESC2 *pddsd2;
   UCHAR          *pBuffer,
                  *pScanLine;
   int            index,
	              index2;
   DWORD          dwColor;

   if ( mask & GL_COLOR_BUFFER_BIT )
   {
	/* Lock the surface to get the surface pointer. */
	pddsd2 = LockHAL( pContext->pShared, TRUE );
   
	/* Solve the color once only. */
	dwColor =  ( ((DWORD)((float)pContext->rClear * pContext->pShared->pixel.rScale)) << pContext->pShared->pixel.rShift );
	dwColor |= ( ((DWORD)((float)pContext->gClear * pContext->pShared->pixel.gScale)) << pContext->pShared->pixel.gShift );
	dwColor |= ( ((DWORD)((float)pContext->bClear * pContext->pShared->pixel.bScale)) << pContext->pShared->pixel.bShift );
   
	if ( all ) 
	{
	  for( index = 0, pScanLine = (UCHAR *)pddsd2->lpSurface; index < pContext->pShared->dwHeight; index++, pScanLine += pddsd2->lPitch )
	    for( pBuffer = pScanLine, index2 = 0; index2 < pContext->pShared->dwWidth; index2++, pBuffer += pContext->pShared->pixel.cb )
               memcpy( pBuffer, &dwColor, pContext->pShared->pixel.cb );
	}
	else
	{
	  pScanLine = ((UCHAR *)pddsd2->lpSurface) +
          	    ( (FLIP( pContext->pShared->dwHeight, (y+height)) * pddsd2->lPitch) + (x * pContext->pShared->pixel.cb) );

	  for( index = 0; index < height; index++, pScanLine += pddsd2->lPitch )
	  {
	    for( index2 = 0, pBuffer = pScanLine; index2 < width; index2++, pBuffer += pContext->pShared->pixel.cb )
		 memcpy( pBuffer, &dwColor, pContext->pShared->pixel.cb );
	  }
	}
   
	UnlockHAL( pContext->pShared, TRUE );
   }
   
   return (mask & ~GL_COLOR_BUFFER_BIT);
}
/*===========================================================================*/
/*  This proc (as all others) has been written for the general case. I use   */
/* the PIXELINFO structure to pack the pixel from RGB24 to whatever the Off- */
/* Screen render surface uses.  The alpha is ignored as Mesa does it in SW.  */
/*===========================================================================*/
/* RETURN:                                                                   */ 
/*===========================================================================*/
void WSpanRGB( const GLcontext* ctx, GLuint n, GLint x, GLint y, const GLubyte rgb[][3], const GLubyte mask[] )
{
   D3DMESACONTEXT *pContext = (D3DMESACONTEXT *)ctx->DriverCtx;
   DDSURFACEDESC2 *pddsd2;
   UCHAR          *pBuffer;
   int            index;
   DWORD          dwColor;

   /* Get the surface pointer and the pitch. */
   pddsd2 = LockHAL( pContext->pShared, TRUE );

   /* Find the start of the span. Invert y for Windows. */
   pBuffer = (UCHAR *)pddsd2->lpSurface + (FLIP(pContext->pShared->dwHeight,y) * pddsd2->lPitch) + (x*pContext->pShared->pixel.cb);

   if ( mask ) 
   {
	for( index = 0; index < n; index++, pBuffer += pContext->pShared->pixel.cb )
	{
	  if ( mask[index] )
	  {
	    /* Pack the color components. */
	    dwColor =  ( ((DWORD)((float)rgb[index][RCOMP] * pContext->pShared->pixel.rScale)) << pContext->pShared->pixel.rShift );
	    dwColor |= ( ((DWORD)((float)rgb[index][GCOMP] * pContext->pShared->pixel.gScale)) << pContext->pShared->pixel.gShift );
	    dwColor |= ( ((DWORD)((float)rgb[index][BCOMP] * pContext->pShared->pixel.bScale)) << pContext->pShared->pixel.bShift );
	    memcpy( pBuffer, &dwColor, pContext->pShared->pixel.cb );
	  }
	}	
   }
   else
   {
	for( index = 0; index < n; index++, pBuffer += pContext->pShared->pixel.cb )
	{
	  /* Pack the color components. */
	  dwColor =  ( ((DWORD)((float)rgb[index][RCOMP] * pContext->pShared->pixel.rScale)) << pContext->pShared->pixel.rShift );
	  dwColor |= ( ((DWORD)((float)rgb[index][GCOMP] * pContext->pShared->pixel.gScale)) << pContext->pShared->pixel.gShift );
	  dwColor |= ( ((DWORD)((float)rgb[index][BCOMP] * pContext->pShared->pixel.bScale)) << pContext->pShared->pixel.bShift );
	  memcpy( pBuffer, &dwColor, pContext->pShared->pixel.cb );
	}
   }

   /* Giver back. */
   UnlockHAL( pContext->pShared, TRUE );
}
/*===========================================================================*/
/*  This proc (as all others) has been written for the general case. I use   */
/* the PIXELINFO structure to pack the pixel from RGB24 to whatever the Off- */
/* Screen render surface uses.  The alpha is ignored as Mesa does it in SW.  */
/*===========================================================================*/
/* RETURN:                                                                   */ 
/*===========================================================================*/
void WSpanRGBA( const GLcontext* ctx, GLuint n, GLint x, GLint y, const GLubyte rgba[][4], const GLubyte mask[] )
{
   D3DMESACONTEXT *pContext = (D3DMESACONTEXT *)ctx->DriverCtx;
   DDSURFACEDESC2 *pddsd2;
   UCHAR          *pBuffer;
   int            index;
   DWORD          dwColor;

   /* Get the surface pointer and the pitch. */
   pddsd2 = LockHAL( pContext->pShared, TRUE );

   /* Find the start of the span. Invert y for Windows. */
   pBuffer = (UCHAR *)pddsd2->lpSurface + (FLIP(pContext->pShared->dwHeight,y) * pddsd2->lPitch) + (x*pContext->pShared->pixel.cb);

   if ( mask ) 
   {
	for( index = 0; index < n; index++, pBuffer += pContext->pShared->pixel.cb )
	{
	  if ( mask[index] )
	  {
         /* Pack the color components. */
	    dwColor =  ( ((DWORD)((float)rgba[index][RCOMP] * pContext->pShared->pixel.rScale)) << pContext->pShared->pixel.rShift );
	    dwColor |= ( ((DWORD)((float)rgba[index][GCOMP] * pContext->pShared->pixel.gScale)) << pContext->pShared->pixel.gShift );
	    dwColor |= ( ((DWORD)((float)rgba[index][BCOMP] * pContext->pShared->pixel.bScale)) << pContext->pShared->pixel.bShift );
	    memcpy( pBuffer, &dwColor, pContext->pShared->pixel.cb );
	  }
	}	
   }
   else
   {
	for( index = 0; index < n; index++, pBuffer += pContext->pShared->pixel.cb )
	{
	  /* Pack the color components. */
	  dwColor =  ( ((DWORD)((float)rgba[index][RCOMP] * pContext->pShared->pixel.rScale)) << pContext->pShared->pixel.rShift );
	  dwColor |= ( ((DWORD)((float)rgba[index][GCOMP] * pContext->pShared->pixel.gScale)) << pContext->pShared->pixel.gShift );
	  dwColor |= ( ((DWORD)((float)rgba[index][BCOMP] * pContext->pShared->pixel.bScale)) << pContext->pShared->pixel.bShift );
	  memcpy( pBuffer, &dwColor, pContext->pShared->pixel.cb );
	}
   }

   /* Giver back. */
   UnlockHAL( pContext->pShared, TRUE );
}
/*===========================================================================*/
/*  This proc (as all others) has been written for the general case. I use   */
/* the PIXELINFO structure to pack the pixel from RGB24 to whatever the Off- */
/* Screen render surface uses.  The color is solved once from the current    */
/* color components.  The alpha is ignored as Mesa is doing it in SW.        */
/*===========================================================================*/
/* RETURN:                                                                   */ 
/*===========================================================================*/
void WSpanRGBAMono( const GLcontext* ctx, GLuint n, GLint x, GLint y, const GLubyte mask[] )
{
   D3DMESACONTEXT *pContext = (D3DMESACONTEXT *)ctx->DriverCtx;
   DDSURFACEDESC2 *pddsd2;
   UCHAR          *pBuffer;
   int            index;
   DWORD          dwColor;

   /* Lock the surface to get the surface pointer and the pitch. */
   pddsd2 = LockHAL( pContext->pShared, TRUE );

   /* Solve the color once only. (no alpha) */
   dwColor =  ( ((DWORD)((float)pContext->rCurrent * pContext->pShared->pixel.rScale)) << pContext->pShared->pixel.rShift );
   dwColor |= ( ((DWORD)((float)pContext->gCurrent * pContext->pShared->pixel.gScale)) << pContext->pShared->pixel.gShift );
   dwColor |= ( ((DWORD)((float)pContext->bCurrent * pContext->pShared->pixel.bScale)) << pContext->pShared->pixel.bShift );

   /* Find the start of the span. Invert y for Windows. */
   pBuffer = (UCHAR *)pddsd2->lpSurface + (FLIP(pContext->pShared->dwHeight,y) * pddsd2->lPitch) + (x*pContext->pShared->pixel.cb);

   if ( mask ) 
   {
	for( index = 0; index < n; index++, pBuffer += pContext->pShared->pixel.cb )
	  if ( mask[index] )
	    memcpy( pBuffer, &dwColor, pContext->pShared->pixel.cb );
   }
   else
   {
	for( index = 0; index < n; index++, pBuffer += pContext->pShared->pixel.cb )
	  memcpy( pBuffer, &dwColor, pContext->pShared->pixel.cb );
   }

   /* Giver back. */
   UnlockHAL( pContext->pShared, TRUE );
}
/*===========================================================================*/
/*  This proc (as all others) has been written for the general case. I use   */
/* the PIXELINFO structure to pack the pixel from RGB24 to whatever the Off- */
/* Screen render surface uses.  The alpha is ignored as Mesa does it in SW.  */
/*===========================================================================*/
/* RETURN:                                                                   */ 
/*===========================================================================*/
void WPixelsRGBA( const GLcontext* ctx, GLuint n, const GLint x[], const GLint y[], const GLubyte rgba[][4], const GLubyte mask[] )
{
   D3DMESACONTEXT *pContext = (D3DMESACONTEXT *)ctx->DriverCtx;
   DDSURFACEDESC2 *pddsd2;
   UCHAR          *pBuffer;
   int            index;
   DWORD          dwColor;

   /* Get the surface pointer and the pitch. */
   pddsd2 = LockHAL( pContext->pShared, TRUE );

   if ( mask ) 
   {
	for( index = 0; index < n; index++ )
	{
	  if ( mask[index] )
	  {
	    /* Pack the color components. */
	    dwColor =  ( ((DWORD)((float)rgba[index][RCOMP] * pContext->pShared->pixel.rScale)) << pContext->pShared->pixel.rShift );
	    dwColor |= ( ((DWORD)((float)rgba[index][GCOMP] * pContext->pShared->pixel.gScale)) << pContext->pShared->pixel.gShift );
	    dwColor |= ( ((DWORD)((float)rgba[index][BCOMP] * pContext->pShared->pixel.bScale)) << pContext->pShared->pixel.bShift );

	    /* Find the pixel. Invert y for Windows. */
	    pBuffer = (UCHAR *)pddsd2->lpSurface + (FLIP(pContext->pShared->dwHeight,y[index]) * pddsd2->lPitch) + (x[index]*pContext->pShared->pixel.cb);
	    memcpy( pBuffer, &dwColor, pContext->pShared->pixel.cb );
	  }
	}
   }
   else
   {
	for( index = 0; index < n; index++ )
	{
	  /* Pack the color components. */
	  dwColor =  ( ((DWORD)((float)rgba[index][RCOMP] * pContext->pShared->pixel.rScale)) << pContext->pShared->pixel.rShift );
	  dwColor |= ( ((DWORD)((float)rgba[index][GCOMP] * pContext->pShared->pixel.gScale)) << pContext->pShared->pixel.gShift );
	  dwColor |= ( ((DWORD)((float)rgba[index][BCOMP] * pContext->pShared->pixel.bScale)) << pContext->pShared->pixel.bShift );

	  /* Find the pixel. Invert y for Windows. */
	  pBuffer = (UCHAR *)pddsd2->lpSurface + (FLIP(pContext->pShared->dwHeight,y[index]) * pddsd2->lPitch) + (x[index]*pContext->pShared->pixel.cb);
	  memcpy( pBuffer, &dwColor, pContext->pShared->pixel.cb );
	}
   }

   /* Giver back. */
   UnlockHAL( pContext->pShared, TRUE );
}
/*===========================================================================*/
/*  This proc (as all others) has been written for the general case. I use   */
/* the PIXELINFO structure to pack the pixel from RGB24 to whatever the Off- */
/* Screen render surface uses.  The color is solved once from the current    */
/* color components.  The alpha is ignored as Mesa is doing it in SW.        */
/*===========================================================================*/
/* RETURN:                                                                   */ 
/*===========================================================================*/
void WPixelsRGBAMono( const GLcontext* ctx, GLuint n, const GLint x[], const GLint y[], const GLubyte mask[] )
{
   D3DMESACONTEXT *pContext = (D3DMESACONTEXT *)ctx->DriverCtx;
   DDSURFACEDESC2 *pddsd2;
   UCHAR          *pBuffer;
   int            index;
   DWORD          dwColor;

   /* Get the surface pointer and the pitch. */
   pddsd2 = LockHAL( pContext->pShared, TRUE );

   /* Solve the color once only. I don't uses the alpha. */
   dwColor =  ( ((DWORD)((float)pContext->rCurrent * pContext->pShared->pixel.rScale)) << pContext->pShared->pixel.rShift );
   dwColor |= ( ((DWORD)((float)pContext->gCurrent * pContext->pShared->pixel.gScale)) << pContext->pShared->pixel.gShift );
   dwColor |= ( ((DWORD)((float)pContext->bCurrent * pContext->pShared->pixel.bScale)) << pContext->pShared->pixel.bShift );

   if ( mask ) 
   {
	/* We store the surface pointer as a UCHAR so that pixel.cb (count in btyles) will work for all. */
	for( index = 0; index < n; index++ )
	{
	  if ( mask[index] )
	  {
	    /* Find the pixel. Invert y for Windows. */
	    pBuffer = (UCHAR *)pddsd2->lpSurface + (FLIP(pContext->pShared->dwHeight,y[index]) * pddsd2->lPitch) + (x[index]*pContext->pShared->pixel.cb);
	    memcpy( pBuffer, &dwColor, pContext->pShared->pixel.cb );
	  }
	}
   }
   else
   {
	/* We store the surface pointer as a UCHAR so that pixel.cb (count in btyles) will work for all. */
	for( index = 0; index < n; index++ )
	{
	  /* Find the pixel. Invert y for Windows. */
	  pBuffer = (UCHAR *)pddsd2->lpSurface + (FLIP(pContext->pShared->dwHeight,y[index]) * pddsd2->lPitch) + (x[index]*pContext->pShared->pixel.cb);
	  memcpy( pBuffer, &dwColor, pContext->pShared->pixel.cb );
	}
   }

   /* Giver back. */
   UnlockHAL( pContext->pShared, TRUE );
}
/*===========================================================================*/
/*  This proc isn't written for speed rather its to handle the general case. */
/* I grab each pixel from the surface and unpack the info using the PIXELINFO*/
/* structure that was generated from the OffScreen surface pixelformat.  The */
/* function will not fill in the alpha value as Mesa I have Mesa allocate its*/
/* own alpha channel when the context was created.  I did this as I didn't   */
/* feel that it was worth the effort to try and get HW to work (bus bound).  */
/*===========================================================================*/
/* RETURN:                                                                   */
/*===========================================================================*/
void RSpanRGBA( const GLcontext* ctx, GLuint n, GLint x, GLint y, GLubyte rgba[][4] )
{
   D3DMESACONTEXT *pContext = (D3DMESACONTEXT *)ctx->DriverCtx;
   DDSURFACEDESC2 *pddsd2;
   UCHAR          *pBuffer;
   int            index;
   DWORD          *pdwColor;

   /* Get the surface pointer and the pitch. */
   pddsd2 = LockHAL( pContext->pShared, TRUE );

   /* Find the start of the span. Invert y for Windows. */
   pBuffer = (UCHAR *)pddsd2->lpSurface + 
	                 (FLIP(pContext->pShared->dwHeight,y) * pddsd2->lPitch) + 
	                 (x*pContext->pShared->pixel.cb);

   /* We store the surface pointer as a UCHAR so that pixel.cb (count in btyles) will work for all. */
   for( index = 0; index < n; index++, pBuffer += pContext->pShared->pixel.cb )
   {
	pdwColor = (DWORD *)pBuffer;
	rgba[index][RCOMP] = (GLubyte)((float)((*pdwColor & pContext->pShared->pixel.dwRMask) >> pContext->pShared->pixel.rShift) / pContext->pShared->pixel.rScale);
	rgba[index][GCOMP] = (GLubyte)((float)((*pdwColor & pContext->pShared->pixel.dwGMask) >> pContext->pShared->pixel.gShift) / pContext->pShared->pixel.gScale);
	rgba[index][BCOMP] = (GLubyte)((float)((*pdwColor & pContext->pShared->pixel.dwBMask) >> pContext->pShared->pixel.bShift) / pContext->pShared->pixel.bScale);
   }

   /* Giver back. */
   UnlockHAL( pContext->pShared, TRUE );
}
/*===========================================================================*/
/*  This proc isn't written for speed rather its to handle the general case. */
/* I grab each pixel from the surface and unpack the info using the PIXELINFO*/
/* structure that was generated from the OffScreen surface pixelformat.  The */
/* function will not fill in the alpha value as Mesa I have Mesa allocate its*/
/* own alpha channel when the context was created.  I did this as I didn't   */
/* feel that it was worth the effort to try and get HW to work (bus bound).  */
/*===========================================================================*/
/* RETURN:                                                                   */
/*===========================================================================*/
void RPixelsRGBA( const GLcontext* ctx, GLuint n, const GLint x[], const GLint y[], GLubyte rgba[][4], const GLubyte mask[] )
{
   D3DMESACONTEXT *pContext = (D3DMESACONTEXT *)ctx->DriverCtx;
   DDSURFACEDESC2 *pddsd2;
   int            index;
   DWORD          *pdwColor;

   /* Get the surface pointer and the pitch. */
   pddsd2 = LockHAL( pContext->pShared, TRUE );

   if ( mask )
   {
	/* We store the surface pointer as a UCHAR so that pixel.cb (count in btyles) will work for all. */
	for( index = 0; index < n; index++ )
	{
	  if ( mask[index] )
	  {
	    /* Find the start of the pixel. Invert y for Windows. */
	    pdwColor = (DWORD *)((UCHAR *)pddsd2->lpSurface + (FLIP(pContext->pShared->dwHeight,y[index]) * pddsd2->lPitch) + (x[index]*pContext->pShared->pixel.cb));
	    rgba[index][RCOMP] = (GLubyte)((float)((*pdwColor & pContext->pShared->pixel.dwRMask) >> pContext->pShared->pixel.rShift) / pContext->pShared->pixel.rScale);
	    rgba[index][GCOMP] = (GLubyte)((float)((*pdwColor & pContext->pShared->pixel.dwGMask) >> pContext->pShared->pixel.gShift) / pContext->pShared->pixel.gScale);
	    rgba[index][BCOMP] = (GLubyte)((float)((*pdwColor & pContext->pShared->pixel.dwBMask) >> pContext->pShared->pixel.bShift) / pContext->pShared->pixel.bScale);
	  }
	}
   }
   else
   {
	/* We store the surface pointer as a UCHAR so that pixel.cb (count in btyles) will work for all. */
	for( index = 0; index < n; index++ )
	{
	  /* Find the start of the pixel. Invert y for Windows. */
	  pdwColor = (DWORD *)((UCHAR *)pddsd2->lpSurface + (FLIP(pContext->pShared->dwHeight,y[index]) * pddsd2->lPitch) + (x[index]*pContext->pShared->pixel.cb));
	  rgba[index][RCOMP] = (GLubyte)((float)((*pdwColor & pContext->pShared->pixel.dwRMask) >> pContext->pShared->pixel.rShift) / pContext->pShared->pixel.rScale);
	  rgba[index][GCOMP] = (GLubyte)((float)((*pdwColor & pContext->pShared->pixel.dwGMask) >> pContext->pShared->pixel.gShift) / pContext->pShared->pixel.gScale);
	  rgba[index][BCOMP] = (GLubyte)((float)((*pdwColor & pContext->pShared->pixel.dwBMask) >> pContext->pShared->pixel.bShift) / pContext->pShared->pixel.bScale);
	}
   }

   /* Giver back. */
   UnlockHAL( pContext->pShared, TRUE );
}