2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2014-09-18 02:08:41 +04:00
|
|
|
/* 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-14 07:03:50 +03:00
|
|
|
#ifndef WEBGL_TRANSFORM_FEEDBACK_H_
|
|
|
|
#define WEBGL_TRANSFORM_FEEDBACK_H_
|
2014-09-18 02:08:41 +04:00
|
|
|
|
|
|
|
#include "WebGLObjectModel.h"
|
2023-09-01 00:45:35 +03:00
|
|
|
#include "WebGLTypes.h"
|
2014-09-18 02:08:41 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2018-07-30 18:33:10 +03:00
|
|
|
namespace webgl {
|
|
|
|
struct CachedDrawFetchLimits;
|
|
|
|
}
|
2014-09-18 02:08:41 +04:00
|
|
|
|
2020-01-09 01:19:16 +03:00
|
|
|
class WebGLTransformFeedback final : public WebGLContextBoundObject {
|
2016-09-10 07:02:54 +03:00
|
|
|
friend class ScopedDrawWithTransformFeedback;
|
2014-09-18 02:08:41 +04:00
|
|
|
friend class WebGLContext;
|
2014-11-26 05:00:06 +03:00
|
|
|
friend class WebGL2Context;
|
2016-09-10 07:02:54 +03:00
|
|
|
friend class WebGLProgram;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2020-01-09 01:19:16 +03:00
|
|
|
MOZ_DECLARE_REFCOUNTED_VIRTUAL_TYPENAME(WebGLTransformFeedback, override)
|
|
|
|
|
2018-07-30 18:33:10 +03:00
|
|
|
friend const webgl::CachedDrawFetchLimits* ValidateDraw(WebGLContext*, GLenum,
|
2018-07-27 07:46:33 +03:00
|
|
|
uint32_t);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2014-09-18 02:08:41 +04:00
|
|
|
public:
|
2015-05-21 02:57:48 +03:00
|
|
|
const GLuint mGLName;
|
2018-10-17 09:54:28 +03:00
|
|
|
bool mHasBeenBound = false;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-09-10 07:02:54 +03:00
|
|
|
private:
|
|
|
|
// GLES 3.0.4 p267, Table 6.24 "Transform Feedback State"
|
2018-03-30 02:43:58 +03:00
|
|
|
// It's not yet in the ES3 spec, but the generic TF buffer bind point has been
|
|
|
|
// moved to context state, instead of TFO state.
|
2016-09-10 07:02:54 +03:00
|
|
|
std::vector<IndexedBufferBinding> mIndexedBindings;
|
|
|
|
bool mIsPaused;
|
|
|
|
bool mIsActive;
|
|
|
|
// Not in state tables:
|
2020-01-09 01:19:16 +03:00
|
|
|
RefPtr<WebGLProgram> mActive_Program;
|
2016-09-27 14:16:27 +03:00
|
|
|
MOZ_INIT_OUTSIDE_CTOR GLenum mActive_PrimMode;
|
|
|
|
MOZ_INIT_OUTSIDE_CTOR size_t mActive_VertPosition;
|
|
|
|
MOZ_INIT_OUTSIDE_CTOR size_t mActive_VertCapacity;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-09-10 07:02:54 +03:00
|
|
|
public:
|
|
|
|
WebGLTransformFeedback(WebGLContext* webgl, GLuint tf);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2014-09-18 02:08:41 +04:00
|
|
|
private:
|
2020-01-09 01:19:16 +03:00
|
|
|
~WebGLTransformFeedback() override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-09-10 07:02:54 +03:00
|
|
|
public:
|
2016-12-29 11:08:39 +03:00
|
|
|
bool IsActiveAndNotPaused() const { return mIsActive && !mIsPaused; }
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-09-10 07:02:54 +03:00
|
|
|
// GL Funcs
|
|
|
|
void BeginTransformFeedback(GLenum primMode);
|
|
|
|
void EndTransformFeedback();
|
|
|
|
void PauseTransformFeedback();
|
|
|
|
void ResumeTransformFeedback();
|
2014-09-18 02:08:41 +04:00
|
|
|
};
|
|
|
|
|
2014-11-14 07:03:50 +03:00
|
|
|
} // namespace mozilla
|
2014-09-18 02:08:41 +04:00
|
|
|
|
2014-11-14 07:03:50 +03:00
|
|
|
#endif // WEBGL_TRANSFORM_FEEDBACK_H_
|