mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
3a4be4332a
--HG-- extra : rebase_source : 849e63417a94cd260e6722c83018f9937c0cb339
38 lines
983 B
C++
38 lines
983 B
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef MOZILLA_GFX_GLMANAGER_H
|
|
#define MOZILLA_GFX_GLMANAGER_H
|
|
|
|
#include "LayerManagerOGL.h"
|
|
|
|
namespace mozilla {
|
|
namespace gl {
|
|
class GLContext;
|
|
}
|
|
namespace layers {
|
|
|
|
/**
|
|
* Minimal interface to allow widgets to draw using OpenGL. Abstracts
|
|
* LayerManagerOGL and CompositorOGL. Call CreateGLManager with either a
|
|
* LayerManagerOGL or a LayerManagerComposite backed by a CompositorOGL.
|
|
*/
|
|
class GLManager
|
|
{
|
|
public:
|
|
static GLManager* CreateGLManager(LayerManager* aManager);
|
|
|
|
virtual ~GLManager() {}
|
|
|
|
virtual gl::GLContext* gl() const = 0;
|
|
virtual ShaderProgramOGL* GetProgram(gl::ShaderProgramType aType) = 0;
|
|
virtual void BindAndDrawQuad(ShaderProgramOGL *aProg) = 0;
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
#endif
|