Show / Hide Table of Contents

Enum PrimitiveType

This is the primitive type used by the RenderContext internally to distinguish between the different OpenGL primitives

Namespace: Fusee.Engine.Common
Assembly: Fusee.Engine.Common.dll
Syntax
public enum PrimitiveType

Fields

Name Description
LineLoop

Relates to OpenGl GL_LINE_LOOP.

Lines

Relates to OpenGl GL_LINES.

LineStrip

Relates to OpenGl GL_LINE_STRIP.

Patches

Relates to OpenGl GL_PATCHES.

Points

Relates to OpenGl GL_POINTS.

Quads

Relates to OpenGl GL_QUADS.

QuadStrip

Relates to OpenGl GL_QUADS_STRIP.

TriangleFan

Relates to OpenGl GL_TRIANGLES_FAN.

Triangles

Relates to OpenGl GL_TRIANGLES.

TriangleStrip

Relates to OpenGl GL_TRIANGLES_STRIP.

Generated by DocFX
GitHub Repo
Back to top