examples/opengl/hellogl_es/cl_helper.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 examples 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 #ifdef QT_OPENGL_ES_1_CL
       
    43 
       
    44 //! [0]
       
    45 #define FLOAT2X(f)      ((int) ( (f) * (65536)))
       
    46 #define X2FLOAT(x)      ((float)(x) / 65536.0f)
       
    47 
       
    48 #define f2vt(f)     FLOAT2X(f)
       
    49 #define vt2f(x)     X2FLOAT(x)
       
    50 
       
    51 #define q_vertexType GLfixed
       
    52 #define q_vertexTypeEnum GL_FIXED
       
    53 
       
    54 #define q_glFog             glFogx
       
    55 #define q_glFogv            glFogxv
       
    56 //! [0]
       
    57 
       
    58 #define q_glLight           glLightx
       
    59 #define q_glLightv          glLightxv
       
    60 #define q_glLightModel      glLightModelx
       
    61 #define q_glLightModelv     glLightModelxv
       
    62 
       
    63 #define q_glAlphaFunc       glAlphaFuncx
       
    64 
       
    65 #define q_glMaterial        glMaterialx
       
    66 #define q_glMaterialv       glMaterialxv
       
    67 #define q_glColor4          glColor4x
       
    68 
       
    69 #define q_glTexParameter    glTexParameterx
       
    70 #define q_glTexEnv          glTexEnvx
       
    71 
       
    72 #define q_glOrtho           glOrthox
       
    73 #define q_glFrustum         glFrustumx
       
    74 
       
    75 #define q_glTranslate       glTranslatex
       
    76 #define q_glScale           glScalex
       
    77 #define q_glRotate          glRotatex
       
    78 #define q_glLoadMatrix      glLoadMatrixx
       
    79 
       
    80 #define q_glClearColor      glClearColorx
       
    81 
       
    82 #define q_glMultMatrix      glMultMatrixx
       
    83 
       
    84 #define q_glNormal3         glNormal3x
       
    85 
       
    86 #define q_glPolygonOffset   glPolygonOffsetx
       
    87 #define q_glPointSize       glPointSizex
       
    88 
       
    89 //! [1]
       
    90 #else
       
    91 
       
    92 #define f2vt(f)     (f)
       
    93 #define vt2f(x)     (x)
       
    94 
       
    95 #define q_vertexType GLfloat
       
    96 #define q_vertexTypeEnum GL_FLOAT
       
    97 
       
    98 #define q_glFog             glFogf
       
    99 #define q_glFogv            glFogfv
       
   100 //! [1]
       
   101 
       
   102 #define q_glLight           glLightf
       
   103 #define q_glLightv          glLightfv
       
   104 #define q_glLightModel      glLightModelf
       
   105 #define q_glLightModelv     glLightModelfv
       
   106 
       
   107 #define q_glAlphaFunc       glAlphaFuncf
       
   108 
       
   109 #define q_glMaterial        glMaterialf
       
   110 #define q_glMaterialv       glMaterialfv
       
   111 #define q_glColor4          glColor4f
       
   112 
       
   113 #define q_glTexParameter    glTexParameterf
       
   114 #define q_glTexEnv          glTexEnvf
       
   115 
       
   116 #define q_glOrtho           glOrthof
       
   117 #define q_glFrustum         glFrustumf
       
   118 
       
   119 #define q_glTranslate       glTranslatef
       
   120 #define q_glScale           glScalef
       
   121 #define q_glRotate          glRotatef
       
   122 #define q_glLoadMatrix      glLoadMatrixf
       
   123 
       
   124 #define q_glClearColor      glClearColor
       
   125 
       
   126 #define q_glMultMatrix      glMultMatrixf
       
   127 
       
   128 #define q_glNormal3         glNormal3f
       
   129 
       
   130 #define q_glPolygonOffset   glPolygonOffsetf
       
   131 #define q_glPointSize       glPointSizef
       
   132 
       
   133 #endif