()
| 48 | =============== |
| 49 | */ |
| 50 | void Draw_InitLocal() { |
| 51 | // load console characters (don't bilerp characters) |
| 52 | draw_chars = GL_FindImage("pics/conchars.pcx", it_pic); |
| 53 | GL_Bind(draw_chars.texnum); |
| 54 | gl.glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); |
| 55 | gl.glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); |
| 56 | } |
| 57 | |
| 58 | /* |
| 59 | ================ |
nothing calls this directly
no test coverage detected