Beispiel #1
0
        public GLFeatureList(GraphicsInterface gi)
        {
            fGI = gi;

            fAlphaTest = new GLFeatureAlphaTest(gi);
            fAutoNormal = new GLFeatureAutoNormal(gi);
            fBlend = new GLFeatureBlend(gi);
            fColorMaterial = new GLFeatureColorMaterial(gi);
            fColorSum = new GLFeatureColorSum(gi);
            fCullFace = new GLFeatureCullFace(gi);
            fDepthTest = new GLFeatureDepthTest(gi);
            fDither = new GLFeatureDither(gi);
            fFog = new GLFeatureFog(gi);
            fLighting = new GLFeatureLighting(gi);
            fLineSmooth = new GLFeatureLineSmooth(gi);
            fMap1Vertex3 = new GLFeatureMap1Vertex3(gi);
            fMap2Vertex3 = new GLFeatureMap2Vertex3(gi);
            fPointSmooth = new GLFeaturePointSmooth(gi);
            fPolygonSmooth = new GLFeaturePolygonSmooth(gi);
            fPointSprite = new GLFeaturePointSprite(gi);
            fTexturing2D = new Texturing2D(gi);
        }
Beispiel #2
0
 public GLAspectPoints(GraphicsInterface gi)
     :base(gi)
 {
     fState = new GLState(gi);
     fSmoothing = new GLFeaturePointSmooth(gi);
 }