Search
lxdream.org :: lxdream/src/pvr2/glutil.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/pvr2/glutil.h
changeset 636:2ccf94f966fc
prev635:76c63aac3590
next1066:ddffe9d2b332
author nkeynes
date Mon Feb 18 09:21:43 2008 +0000 (16 years ago)
branchlxdream-render
permissions -rw-r--r--
last change More render WIP - initial glrender.c
file annotate diff log raw
nkeynes@635
     1
/**
nkeynes@636
     2
 * $Id$
nkeynes@635
     3
 *
nkeynes@635
     4
 * GL-based support functions 
nkeynes@635
     5
 *
nkeynes@635
     6
 * Copyright (c) 2005 Nathan Keynes.
nkeynes@635
     7
 *
nkeynes@635
     8
 * This program is free software; you can redistribute it and/or modify
nkeynes@635
     9
 * it under the terms of the GNU General Public License as published by
nkeynes@635
    10
 * the Free Software Foundation; either version 2 of the License, or
nkeynes@635
    11
 * (at your option) any later version.
nkeynes@635
    12
 *
nkeynes@635
    13
 * This program is distributed in the hope that it will be useful,
nkeynes@635
    14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
nkeynes@635
    15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
nkeynes@635
    16
 * GNU General Public License for more details.
nkeynes@635
    17
 */
nkeynes@635
    18
nkeynes@635
    19
#ifndef lxdream_glutil_H
nkeynes@635
    20
#define lxdream_glutil_H
nkeynes@635
    21
nkeynes@635
    22
#include "display.h"
nkeynes@635
    23
nkeynes@635
    24
/**
nkeynes@635
    25
 * Test if a specific extension is supported. From opengl.org
nkeynes@635
    26
 * @param extension extension name to check for
nkeynes@635
    27
 * @return TRUE if supported, otherwise FALSE.
nkeynes@635
    28
 */
nkeynes@635
    29
gboolean isGLExtensionSupported( const char *extension );
nkeynes@635
    30
nkeynes@635
    31
nkeynes@635
    32
/****** Shader handling (gl_sl.c) *****/
nkeynes@635
    33
gboolean glsl_is_supported(void);
nkeynes@635
    34
gboolean glsl_load_shaders( const char *vert_shader, const char *frag_shader );
nkeynes@635
    35
void glsl_unload_shaders(void);
nkeynes@635
    36
nkeynes@635
    37
extern const char *glsl_vertex_shader_src;
nkeynes@635
    38
extern const char *glsl_fragment_shader_src;
nkeynes@635
    39
nkeynes@635
    40
#endif /* !lxdream_glutil_H */
.