egl/sfegltest/inc/vgline.h
branchbug235_bringup_0
changeset 211 3804ba25b23f
child 215 097e92a68d68
equal deleted inserted replaced
210:da03feddbab7 211:3804ba25b23f
       
     1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 
       
    15 #ifndef __VGLINE_H__
       
    16 #define __VGLINE_H__
       
    17 
       
    18 #include "eglrendering.h"
       
    19 
       
    20 class CVGLine : public CEGLRendering
       
    21     {
       
    22 public:
       
    23     static CVGLine* NewL(RWindow& aWindow);
       
    24 
       
    25 private:
       
    26     CVGLine(RWindow& aWindow);
       
    27     void KhrSetup();
       
    28     void KhrPaint();
       
    29 
       
    30 private:
       
    31     VGPaint iVGPaint;
       
    32     VGPath iVGPath;
       
    33     };
       
    34 
       
    35 #endif
       
    36