2012-11-21 01:38:20 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 20; 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/. */
|
|
|
|
|
|
|
|
#include "WebGLObjectModel.h"
|
2014-11-14 07:03:50 +03:00
|
|
|
|
2012-11-21 01:38:20 +04:00
|
|
|
#include "WebGLContext.h"
|
|
|
|
|
2014-11-14 07:03:50 +03:00
|
|
|
namespace mozilla {
|
2012-11-21 01:38:20 +04:00
|
|
|
|
2014-11-14 07:03:50 +03:00
|
|
|
WebGLContextBoundObject::WebGLContextBoundObject(WebGLContext* webgl)
|
|
|
|
: mContext(webgl)
|
|
|
|
, mContextGeneration(webgl->Generation())
|
|
|
|
{
|
2012-11-21 01:38:20 +04:00
|
|
|
}
|
2014-11-14 07:03:50 +03:00
|
|
|
|
2012-11-21 01:38:20 +04:00
|
|
|
bool
|
2016-10-04 04:33:52 +03:00
|
|
|
WebGLContextBoundObject::IsCompatibleWithContext(const WebGLContext* other) const
|
2014-11-14 07:03:50 +03:00
|
|
|
{
|
|
|
|
return (mContext == other &&
|
|
|
|
mContextGeneration == other->Generation());
|
2012-11-21 01:38:20 +04:00
|
|
|
}
|
2014-11-14 07:03:50 +03:00
|
|
|
|
|
|
|
} // namespace mozilla
|