src/opengl/qgl_cl_p.h
changeset 0 1918ee327afb
child 4 3b1da2848fc7
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 /****************************************************************************
       
     2 **
       
     3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 ** All rights reserved.
       
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
       
     6 **
       
     7 ** This file is part of the QtOpenGL module of the Qt Toolkit.
       
     8 **
       
     9 ** $QT_BEGIN_LICENSE:LGPL$
       
    10 ** No Commercial Usage
       
    11 ** This file contains pre-release code and may not be distributed.
       
    12 ** You may use this file in accordance with the terms and conditions
       
    13 ** contained in the Technology Preview License Agreement accompanying
       
    14 ** this package.
       
    15 **
       
    16 ** GNU Lesser General Public License Usage
       
    17 ** Alternatively, this file may be used under the terms of the GNU Lesser
       
    18 ** General Public License version 2.1 as published by the Free Software
       
    19 ** Foundation and appearing in the file LICENSE.LGPL included in the
       
    20 ** packaging of this file.  Please review the following information to
       
    21 ** ensure the GNU Lesser General Public License version 2.1 requirements
       
    22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
       
    23 **
       
    24 ** In addition, as a special exception, Nokia gives you certain additional
       
    25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
       
    26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
       
    27 **
       
    28 ** If you have questions regarding the use of this file, please contact
       
    29 ** Nokia at qt-info@nokia.com.
       
    30 **
       
    31 **
       
    32 **
       
    33 **
       
    34 **
       
    35 **
       
    36 **
       
    37 **
       
    38 ** $QT_END_LICENSE$
       
    39 **
       
    40 ****************************************************************************/
       
    41 
       
    42 
       
    43 #ifdef QT_OPENGL_ES_1_CL
       
    44 
       
    45 //
       
    46 //  W A R N I N G
       
    47 //  -------------
       
    48 //
       
    49 // This file is not part of the Qt API.  It exists for the convenience
       
    50 // of the QGLWidget class.  This header file may change from
       
    51 // version to version without notice, or even be removed.
       
    52 //
       
    53 // We mean it.
       
    54 //
       
    55 
       
    56 QT_BEGIN_NAMESPACE
       
    57 
       
    58 inline void glTexParameterf (GLenum target, GLenum pname, GLfloat param)
       
    59 {
       
    60     glTexParameterx(target, pname, FLOAT2X(param));
       
    61 }
       
    62 inline void glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
       
    63 {
       
    64     glClearColorx(FLOAT2X(red) ,FLOAT2X(green), FLOAT2X(blue), FLOAT2X(alpha));
       
    65 }
       
    66 inline void glColor4f (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
       
    67 {
       
    68     glColor4x(FLOAT2X(red) ,FLOAT2X(green), FLOAT2X(blue), FLOAT2X(alpha));
       
    69 }
       
    70 
       
    71 inline void glOrthof (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar)
       
    72 {
       
    73     glOrthox(FLOAT2X(left), FLOAT2X(right), FLOAT2X(bottom), FLOAT2X(top), FLOAT2X(zNear), FLOAT2X(zFar));
       
    74 }
       
    75 
       
    76 inline  void glPointSize (GLfloat size)
       
    77 {
       
    78     glPointSizex(FLOAT2X(size));
       
    79 }
       
    80 
       
    81 inline void glPolygonOffset (GLfloat factor, GLfloat units)
       
    82 {
       
    83     glPolygonOffsetx (FLOAT2X(factor), FLOAT2X(units));
       
    84 }
       
    85 
       
    86 inline void glRotatef (GLfloat angle, GLfloat x, GLfloat y, GLfloat z)
       
    87 {
       
    88     glRotatex(FLOAT2X(angle), FLOAT2X(x), FLOAT2X(y), FLOAT2X(z));
       
    89 }
       
    90 
       
    91 inline void glTranslatef (GLfloat x, GLfloat y, GLfloat z)
       
    92 {
       
    93     glTranslatex(FLOAT2X(x) ,FLOAT2X(y) ,FLOAT2X(z));
       
    94 }
       
    95 
       
    96 inline void glNormal3f (GLfloat nx, GLfloat ny, GLfloat nz)
       
    97 {
       
    98     glNormal3x(FLOAT2X(nx), FLOAT2X(ny), FLOAT2X(nz));
       
    99 }
       
   100 
       
   101 inline void glScalef(GLfloat x, GLfloat y, GLfloat z)
       
   102 {
       
   103     glScalex(FLOAT2X(x), FLOAT2X(y), FLOAT2X(z));
       
   104 }
       
   105 
       
   106 inline void glClearDepthf (GLclampf depth)
       
   107 {
       
   108     glClearDepthx(FLOAT2X(depth));
       
   109 }
       
   110 
       
   111 inline void glAlphaFunc (GLenum func, GLclampf ref)
       
   112 {
       
   113     glAlphaFuncx(func, FLOAT2X(ref));
       
   114 }
       
   115 
       
   116 inline void glLoadMatrixf (const GLfloat *_m)
       
   117 {
       
   118     GLfixed m[16];
       
   119     for (int i =0; i < 16; i++)
       
   120         m[i] = FLOAT2X(_m[i]);
       
   121     glLoadMatrixx(m);
       
   122 }
       
   123 
       
   124 inline void glMultMatrixf (const GLfloat *_m)
       
   125 {
       
   126     GLfixed m[16];
       
   127     for (int i =0; i < 16; i++)
       
   128         m[i] = FLOAT2X(_m[i]);
       
   129     glMultMatrixx (m);
       
   130 }
       
   131 
       
   132 
       
   133 inline void glLineWidth (GLfloat width)
       
   134 {
       
   135     glLineWidthx(FLOAT2X(width));
       
   136 }
       
   137 
       
   138 QT_END_NAMESPACE
       
   139 
       
   140 #endif  //QT_OPENGL_ES_1_CL
       
   141