Search
lxdream.org :: lxdream/src/pvr2/glutil.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/pvr2/glutil.h
changeset 669:ab344e42bca9
prev667:0e1ac8da75d9
next687:6bdc2b7032ea
author nkeynes
date Mon May 12 10:00:13 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Cleanup most of the -Wall warnings (getting a bit sloppy...)
Convert FP code to use fixed banks rather than indirect pointer
(3-4% faster this way now)
file annotate diff log raw
nkeynes@653
     1
/**
nkeynes@653
     2
 * $Id$
nkeynes@653
     3
 *
nkeynes@653
     4
 * GL-based support functions 
nkeynes@653
     5
 *
nkeynes@653
     6
 * Copyright (c) 2005 Nathan Keynes.
nkeynes@653
     7
 *
nkeynes@653
     8
 * This program is free software; you can redistribute it and/or modify
nkeynes@653
     9
 * it under the terms of the GNU General Public License as published by
nkeynes@653
    10
 * the Free Software Foundation; either version 2 of the License, or
nkeynes@653
    11
 * (at your option) any later version.
nkeynes@653
    12
 *
nkeynes@653
    13
 * This program is distributed in the hope that it will be useful,
nkeynes@653
    14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
nkeynes@653
    15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
nkeynes@653
    16
 * GNU General Public License for more details.
nkeynes@653
    17
 */
nkeynes@653
    18
nkeynes@653
    19
#ifndef lxdream_glutil_H
nkeynes@653
    20
#define lxdream_glutil_H
nkeynes@653
    21
nkeynes@653
    22
#include "display.h"
nkeynes@653
    23
nkeynes@653
    24
/**
nkeynes@653
    25
 * Test if a specific extension is supported. From opengl.org
nkeynes@653
    26
 * @param extension extension name to check for
nkeynes@653
    27
 * @return TRUE if supported, otherwise FALSE.
nkeynes@653
    28
 */
nkeynes@653
    29
gboolean isGLExtensionSupported( const char *extension );
nkeynes@653
    30
nkeynes@667
    31
/**
nkeynes@667
    32
 * Test if secondary color (GL_COLOR_SUM) is supported.
nkeynes@667
    33
 */
nkeynes@667
    34
gboolean isGLSecondaryColorSupported();
nkeynes@667
    35
nkeynes@667
    36
gboolean isGLVertexBufferSupported();
nkeynes@667
    37
gboolean isGLPixelBufferSupported();
nkeynes@667
    38
gboolean isGLMirroredTextureSupported();
nkeynes@653
    39
nkeynes@653
    40
/****** Shader handling (gl_sl.c) *****/
nkeynes@653
    41
gboolean glsl_is_supported(void);
nkeynes@653
    42
gboolean glsl_load_shaders( const char *vert_shader, const char *frag_shader );
nkeynes@653
    43
void glsl_unload_shaders(void);
nkeynes@669
    44
void glsl_enable_shaders( gboolean enable );
nkeynes@653
    45
nkeynes@653
    46
extern const char *glsl_vertex_shader_src;
nkeynes@653
    47
extern const char *glsl_fragment_shader_src;
nkeynes@653
    48
nkeynes@653
    49
#endif /* !lxdream_glutil_H */
.