[vid] Remove direct draw interface

It has been dead for a long time.
This commit is contained in:
Bill Currie 2023-11-24 12:28:55 +09:00
parent f721021fec
commit 250cac6079
3 changed files with 0 additions and 85 deletions

View file

@ -156,8 +156,6 @@ extern vec3_t r_pright, r_pup, r_ppn, r_porigin;
void D_Aff8Patch (const byte *pcolormap);
void D_BeginDirectRect (int x, int y, byte *pbitmap, int width, int height);
void D_EndDirectRect (int x, int y, int width, int height);
void D_PolysetDraw (void);
void D_PolysetDrawFinalVerts (finalvert_t *fv, int numverts);
void D_PolysetSetEdgeTable (void);

View file

@ -39,77 +39,6 @@
static vid_internal_t vid_internal;
#if 0
static byte backingbuf[48 * 24];
#endif
void
D_BeginDirectRect (int x, int y, byte *pbitmap, int width, int height)
{
#if 0
int i, j, reps = 1, repshift = 0;
vrect_t rect;
if (!viddef.initialized || !win_sw_context)
return;
if (!viddef.buffer)
return;
for (i = 0; i < (height << repshift); i += reps) {
for (j = 0; j < reps; j++) {
memcpy (&backingbuf[(i + j) * 24],
viddef.buffer + x + ((y << repshift) + i +
j) * viddef.rowbytes, width);
memcpy (viddef.buffer + x +
((y << repshift) + i + j) * viddef.rowbytes,
&pbitmap[(i >> repshift) * width], width);
}
}
rect.x = x;
rect.y = y;
rect.width = width;
rect.height = height << repshift;
rect.next = NULL;
win_sw_context->update (win_sw_context, &rect);
#endif
}
void
D_EndDirectRect (int x, int y, int width, int height)
{
#if 0
int i, j, reps = 1, repshift = 0;
vrect_t rect;
if (!viddef.initialized || !win_sw_context)
return;
if (!viddef.buffer)
return;
for (i = 0; i < (height << repshift); i += reps) {
for (j = 0; j < reps; j++) {
memcpy (viddef.buffer + x +
((y << repshift) + i + j) * viddef.rowbytes,
&backingbuf[(i + j) * 24], width);
}
}
rect.x = x;
rect.y = y;
rect.width = width;
rect.height = height << repshift;
rect.next = NULL;
win_sw_context->update (win_sw_context, &rect);
#endif
}
static void
VID_shutdown (void *data)
{

View file

@ -69,18 +69,6 @@ static vid_internal_t vid_internal;
int VID_options_items = 1;
void
D_BeginDirectRect (int x, int y, byte *pbitmap, int width, int height)
{
// direct drawing of the "accessing disk" icon isn't supported
}
void
D_EndDirectRect (int x, int y, int width, int height)
{
// direct drawing of the "accessing disk" icon isn't supported
}
static void
X11_VID_Shutdown (void)
{