2013-07-16 18:32:24 +04: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-11 02:16:50 +03:00
|
|
|
#ifndef WEBGL_1_CONTEXT_H_
|
|
|
|
#define WEBGL_1_CONTEXT_H_
|
2013-07-16 18:32:24 +04:00
|
|
|
|
|
|
|
#include "WebGLContext.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class WebGL1Context
|
|
|
|
: public WebGLContext
|
|
|
|
{
|
|
|
|
public:
|
2014-11-11 02:16:50 +03:00
|
|
|
static WebGL1Context* Create();
|
2013-07-16 18:32:24 +04:00
|
|
|
|
2014-11-11 02:16:50 +03:00
|
|
|
private:
|
2013-07-16 18:32:24 +04:00
|
|
|
WebGL1Context();
|
|
|
|
|
2014-11-11 02:16:50 +03:00
|
|
|
public:
|
|
|
|
virtual ~WebGL1Context();
|
2013-07-17 17:58:09 +04:00
|
|
|
|
2014-11-11 02:16:50 +03:00
|
|
|
virtual bool IsWebGL2() const MOZ_OVERRIDE {
|
2013-07-17 17:58:09 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-11-11 02:16:50 +03:00
|
|
|
// nsWrapperCache
|
|
|
|
virtual JSObject* WrapObject(JSContext* cx) MOZ_OVERRIDE;
|
2014-06-24 04:56:21 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
virtual bool ValidateAttribPointerType(bool integerMode, GLenum type, GLsizei* alignment, const char* info) MOZ_OVERRIDE;
|
2014-11-26 05:00:06 +03:00
|
|
|
virtual bool ValidateBufferTarget(GLenum target, const char* info) MOZ_OVERRIDE;
|
|
|
|
virtual bool ValidateBufferIndexedTarget(GLenum target, const char* info) MOZ_OVERRIDE;
|
2014-12-05 10:04:55 +03:00
|
|
|
virtual bool ValidateBufferForTarget(GLenum target, WebGLBuffer* buffer, const char* info) MOZ_OVERRIDE;
|
2013-07-16 18:32:24 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2014-11-11 02:16:50 +03:00
|
|
|
#endif // WEBGL_1_CONTEXT_H_
|