Ignore:
Timestamp:
May 23, 2000, 10:35:01 PM (25 years ago)
Author:
jeroen
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/mesa/rect.h

    r2938 r3597  
    1 /* $Id: rect.h,v 1.1 2000-02-29 00:48:36 sandervl Exp $ */
     1/* $Id: rect.h,v 1.2 2000-05-23 20:34:55 jeroen Exp $ */
    22
    33/*
    44 * Mesa 3-D graphics library
    5  * Version:  3.1
     5 * Version:  3.3
    66 *
    77 * Copyright (C) 1999  Brian Paul   All Rights Reserved.
     
    3333
    3434
    35 #include "types.h"
     35#include "glheader.h"
    3636
    3737
    38 extern void gl_Rectf( GLcontext *ctx,
    39                       GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2 );
     38extern void
     39_mesa_Rectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2);
     40
     41extern void
     42_mesa_Rectdv(const GLdouble *v1, const GLdouble *v2);
     43
     44extern void
     45_mesa_Rectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2);
     46
     47extern void
     48_mesa_Rectfv(const GLfloat *v1, const GLfloat *v2);
     49
     50extern void
     51_mesa_Recti(GLint x1, GLint y1, GLint x2, GLint y2);
     52
     53extern void
     54_mesa_Rectiv(const GLint *v1, const GLint *v2);
     55
     56extern void
     57_mesa_Rects(GLshort x1, GLshort y1, GLshort x2, GLshort y2);
     58
     59extern void
     60_mesa_Rectsv(const GLshort *v1, const GLshort *v2);
     61
    4062
    4163
Note: See TracChangeset for help on using the changeset viewer.