chromium/ui/gl/gl_helper.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/gl/gl_helper.h"

#include <string>

#include "base/check_op.h"
#include "ui/gl/gl_context.h"
#include "ui/gl/scoped_binders.h"

namespace gl {

// static
GLuint GLHelper::CompileShader(GLenum type, const char* src) {}

// static
GLuint GLHelper::LoadShader(GLenum type, const char* src) {}

// static
GLuint GLHelper::LinkProgram(GLuint vertex_shader, GLuint fragment_shader) {}

// static
GLuint GLHelper::SetupProgram(GLuint vertex_shader, GLuint fragment_shader) {}

// static
GLuint GLHelper::SetupQuadVertexBuffer() {}

// static
void GLHelper::DrawQuad(GLuint vertex_buffer) {}

}  // namespace gl