flutter_flutter/flow/open_gl.h

29 lines
467 B
C

// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLOW_OPEN_GL_H_
#define FLOW_OPEN_GL_H_
#include "build/build_config.h"
#if OS_IOS
#include <OpenGLES/ES2/gl.h>
#elif OS_MACOSX
#include <OpenGL/gl.h>
#elif OS_ANDROID
#include <GLES2/gl2.h>
#else
#error OpenGL headers not found for this platform.
#endif
#endif // FLOW_OPEN_GL_H_