mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 17:01:22 +00:00
5a57280aa9
While the scheme of using our own allocated did work just fine, fisheye rendering uses glGenTextures which caused a texture id clash and thus invalid operations (the cube map texture happened to be the same as the console background texture). Sure, I could have just "fixed" the fisheye init code, but this brings gl closer in line with glsl (which makes extensive use of glGenTextures and glDeleteTextures). This doesn't fix any texture leaks gl has (plenty, I imagine), but it's a step in the right direction.
130 lines
2.9 KiB
C
130 lines
2.9 KiB
C
/*
|
|
gl_graph.c
|
|
|
|
(description)
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to:
|
|
|
|
Free Software Foundation, Inc.
|
|
59 Temple Place - Suite 330
|
|
Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#ifdef HAVE_STRING_H
|
|
# include <string.h>
|
|
#endif
|
|
#ifdef HAVE_STRINGS_H
|
|
# include <strings.h>
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "QF/cvar.h"
|
|
#include "QF/draw.h"
|
|
#include "QF/render.h"
|
|
#include "QF/sys.h"
|
|
#include "QF/GL/defines.h"
|
|
#include "QF/GL/funcs.h"
|
|
#include "QF/GL/qf_rmain.h"
|
|
#include "QF/GL/qf_textures.h"
|
|
|
|
#include "r_internal.h"
|
|
|
|
#define NUM_GRAPH_TEXTURES 8
|
|
|
|
static byte *graph_texels[NUM_GRAPH_TEXTURES];
|
|
static GLuint graph_texture[NUM_GRAPH_TEXTURES];
|
|
static int graph_index;
|
|
static int graph_size[NUM_GRAPH_TEXTURES];
|
|
static int graph_width[NUM_GRAPH_TEXTURES];
|
|
|
|
|
|
void
|
|
gl_R_InitGraphTextures (void)
|
|
{
|
|
qfglGenTextures (NUM_GRAPH_TEXTURES, graph_texture);
|
|
}
|
|
|
|
void
|
|
gl_R_LineGraph (int x, int y, int *h_vals, int count, int height)
|
|
{
|
|
byte color;
|
|
byte *dest;
|
|
int size, h, i, j, s;
|
|
|
|
if (!count)
|
|
return;
|
|
|
|
s = height;
|
|
|
|
size = s * count;
|
|
if (size > graph_size[graph_index]) {
|
|
graph_size[graph_index] = size;
|
|
graph_texels[graph_index] = realloc (graph_texels[graph_index], size);
|
|
}
|
|
graph_width[graph_index] = count;
|
|
|
|
if (!graph_texels[graph_index])
|
|
Sys_Error ("R_LineGraph: failed to allocate texture buffer");
|
|
|
|
i = 0;
|
|
while (count--) {
|
|
dest = graph_texels[graph_index] + i++;
|
|
|
|
h = *h_vals++;
|
|
|
|
if (h == 10000)
|
|
color = 0x6f; // yellow
|
|
else if (h == 9999)
|
|
color = 0x4f; // red
|
|
else if (h == 9998)
|
|
color = 0xd0; // blue
|
|
else
|
|
color = 0xfe; // white
|
|
|
|
if (h > s)
|
|
h = s;
|
|
|
|
for (j = 0; j < h; j++, dest += graph_width[graph_index])
|
|
dest[0] = color;
|
|
|
|
for (; j < s; j++, dest += graph_width[graph_index])
|
|
dest[0] = 0xff;
|
|
}
|
|
|
|
qfglBindTexture (GL_TEXTURE_2D, graph_texture[graph_index]);
|
|
|
|
GL_Upload8 (graph_texels[graph_index], graph_width[graph_index], s, 0, 1);
|
|
|
|
qfglBegin (GL_QUADS);
|
|
qfglTexCoord2f (0, 0);
|
|
qfglVertex2f (x, y);
|
|
qfglTexCoord2f (1, 0);
|
|
qfglVertex2f (x + graph_width[graph_index], y);
|
|
qfglTexCoord2f (1, 1);
|
|
qfglVertex2f (x + graph_width[graph_index], y - s);
|
|
qfglTexCoord2f (0, 1);
|
|
qfglVertex2f (x, y - s);
|
|
qfglEnd ();
|
|
|
|
graph_index = (graph_index + 1) % NUM_GRAPH_TEXTURES;
|
|
}
|