2014-10-18 03:34:01 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
// vim:set ts=2 sts=2 sw=2 et cin:
|
|
|
|
/* 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-10-21 17:53:00 +04:00
|
|
|
#ifndef AndroidSurfaceTexture_h__
|
|
|
|
#define AndroidSurfaceTexture_h__
|
2014-10-18 03:34:01 +04:00
|
|
|
|
2020-06-24 21:59:14 +03:00
|
|
|
#include "mozilla/gfx/Matrix.h"
|
2017-03-04 00:02:53 +03:00
|
|
|
|
2017-03-04 00:02:53 +03:00
|
|
|
typedef uint32_t AndroidSurfaceTextureHandle;
|
|
|
|
|
2020-08-07 10:14:46 +03:00
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
|
|
|
|
|
|
|
# include "SurfaceTexture.h"
|
|
|
|
|
2014-10-21 17:53:00 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gl {
|
|
|
|
|
|
|
|
class AndroidSurfaceTexture {
|
2014-10-18 03:34:01 +04:00
|
|
|
public:
|
2018-12-15 00:34:11 +03:00
|
|
|
static void Init();
|
2017-09-30 00:06:35 +03:00
|
|
|
static void GetTransformMatrix(
|
|
|
|
java::sdk::SurfaceTexture::Param surfaceTexture,
|
|
|
|
mozilla::gfx::Matrix4x4* outMatrix);
|
2014-10-18 03:34:01 +04:00
|
|
|
};
|
2014-10-21 17:53:01 +04:00
|
|
|
|
2017-03-04 00:02:53 +03:00
|
|
|
} // namespace gl
|
|
|
|
} // namespace mozilla
|
2014-10-18 03:34:01 +04:00
|
|
|
|
2020-08-07 10:14:46 +03:00
|
|
|
#endif // MOZ_WIDGET_ANDROID
|
|
|
|
|
2017-03-04 00:02:53 +03:00
|
|
|
#endif // AndroidSurfaceTexture_h__
|