2013-07-16 07:32:24 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
2014-11-10 15:16:50 -08:00
|
|
|
#ifndef WEBGL_1_CONTEXT_H_
|
|
|
|
#define WEBGL_1_CONTEXT_H_
|
2013-07-16 07:32:24 -07:00
|
|
|
|
|
|
|
#include "WebGLContext.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class WebGL1Context
|
|
|
|
: public WebGLContext
|
|
|
|
{
|
|
|
|
public:
|
2014-11-10 15:16:50 -08:00
|
|
|
static WebGL1Context* Create();
|
2013-07-16 07:32:24 -07:00
|
|
|
|
2014-11-10 15:16:50 -08:00
|
|
|
private:
|
2013-07-16 07:32:24 -07:00
|
|
|
WebGL1Context();
|
2015-11-24 20:15:29 -08:00
|
|
|
|
|
|
|
virtual UniquePtr<webgl::FormatUsageAuthority>
|
|
|
|
CreateFormatUsage(gl::GLContext* gl) const override;
|
2013-07-16 07:32:24 -07:00
|
|
|
|
2014-11-10 15:16:50 -08:00
|
|
|
public:
|
|
|
|
virtual ~WebGL1Context();
|
2013-07-17 06:58:09 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool IsWebGL2() const override {
|
2013-07-17 06:58:09 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-11-10 15:16:50 -08:00
|
|
|
// nsWrapperCache
|
2015-07-14 17:37:28 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* cx, JS::Handle<JSObject*> givenProto) override;
|
2014-06-23 17:56:21 -07:00
|
|
|
|
|
|
|
private:
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool ValidateAttribPointerType(bool integerMode, GLenum type, GLsizei* alignment, const char* info) override;
|
|
|
|
virtual bool ValidateBufferTarget(GLenum target, const char* info) override;
|
|
|
|
virtual bool ValidateBufferIndexedTarget(GLenum target, const char* info) override;
|
2015-02-02 18:06:20 -08:00
|
|
|
virtual bool ValidateBufferUsageEnum(GLenum usage, const char* info) override;
|
2015-04-16 18:17:07 -07:00
|
|
|
virtual bool ValidateQueryTarget(GLenum target, const char* info) override;
|
2015-03-22 18:29:32 -07:00
|
|
|
virtual bool ValidateUniformMatrixTranspose(bool transpose, const char* info) override;
|
2013-07-16 07:32:24 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2014-11-10 15:16:50 -08:00
|
|
|
#endif // WEBGL_1_CONTEXT_H_
|