mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.5 KiB
37 lines
1.5 KiB
*** src4.0.3/src/frameworks/base/include/gui/SurfaceTexture.h 2012-01-18 16:32:41.424750385 +0400 |
|
--- src_mock3.0.1/frameworks/base/include/gui/SurfaceTexture.h 2012-01-12 21:28:14.000000000 +0400 |
|
*************** |
|
*** 68,75 **** |
|
// texture will be bound in updateTexImage. useFenceSync specifies whether |
|
// fences should be used to synchronize access to buffers if that behavior |
|
// is enabled at compile-time. |
|
! SurfaceTexture(GLuint tex, bool allowSynchronousMode = true, |
|
! GLenum texTarget = GL_TEXTURE_EXTERNAL_OES, bool useFenceSync = true); |
|
|
|
virtual ~SurfaceTexture(); |
|
|
|
--- 68,74 ---- |
|
// texture will be bound in updateTexImage. useFenceSync specifies whether |
|
// fences should be used to synchronize access to buffers if that behavior |
|
// is enabled at compile-time. |
|
! SurfaceTexture(GLuint tex); |
|
|
|
virtual ~SurfaceTexture(); |
|
|
|
*************** |
|
*** 280,286 **** |
|
mBufferState(BufferSlot::FREE), |
|
mRequestBufferCalled(false), |
|
mTransform(0), |
|
! mScalingMode(NATIVE_WINDOW_SCALING_MODE_FREEZE), |
|
mTimestamp(0), |
|
mFrameNumber(0), |
|
mFence(EGL_NO_SYNC_KHR) { |
|
--- 279,285 ---- |
|
mBufferState(BufferSlot::FREE), |
|
mRequestBufferCalled(false), |
|
mTransform(0), |
|
! mScalingMode(0), |
|
mTimestamp(0), |
|
mFrameNumber(0), |
|
mFence(EGL_NO_SYNC_KHR) {
|
|
|