summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/DoubleBufferedTexture.cpp
blob: 4c5af9e687fa161b57be8e525897f817a38e4a59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/*
 * Copyright 2010, The Android Open Source Project
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *  * Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *  * Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include "config.h"
#include "DoubleBufferedTexture.h"

#include "ClassTracker.h"
#include "GLUtils.h"

#define LOG_NDEBUG 1
#define LOG_TAG "DoubleBufferedTexture.cpp"
#include <utils/Log.h>

namespace WebCore {

DoubleBufferedTexture::DoubleBufferedTexture(EGLContext sharedContext, SharedTextureMode mode)
{
    m_sharedTextureMode = mode;

    m_textureA = new SharedTexture(m_sharedTextureMode);
    if (m_sharedTextureMode == EglImageMode)
        m_textureB = new SharedTexture(m_sharedTextureMode);
    else
        m_textureB = 0;

    m_display = eglGetCurrentDisplay();
    m_pContext = EGL_NO_CONTEXT;
    m_cContext = sharedContext;
    m_writeableTexture = m_textureA;
    m_lockedConsumerTexture = GL_NO_TEXTURE;
    m_supportsEGLImage = GLUtils::isEGLImageSupported();
#ifdef DEBUG_COUNT
    ClassTracker::instance()->increment("DoubleBufferedTexture");
#endif
}

DoubleBufferedTexture::~DoubleBufferedTexture()
{
#ifdef DEBUG_COUNT
    ClassTracker::instance()->decrement("DoubleBufferedTexture");
#endif
    delete m_textureA;
    delete m_textureB;
}

SharedTexture* DoubleBufferedTexture::getWriteableTexture()
{
    if (m_sharedTextureMode == SurfaceTextureMode)
        return m_textureA;
    return reinterpret_cast<SharedTexture*>(
        android_atomic_release_load((int32_t*)&m_writeableTexture));
}

SharedTexture* DoubleBufferedTexture::getReadableTexture()
{
    if (m_sharedTextureMode == SurfaceTextureMode)
        return m_textureA;
    return (getWriteableTexture() != m_textureA) ? m_textureA : m_textureB;
}

EGLContext DoubleBufferedTexture::producerAcquireContext()
{
    if (m_sharedTextureMode == SurfaceTextureMode)
        return EGL_NO_CONTEXT;

    if (m_pContext != EGL_NO_CONTEXT) {
        LOGV("AquireContext has previously generated a context.\n");
        return m_pContext;
    }

    // check to see if a context already exists on this thread
    EGLContext context = eglGetCurrentContext();

    // if no context exists then create one
    if (context == EGL_NO_CONTEXT) {
        EGLContext sharedContext = m_supportsEGLImage ? EGL_NO_CONTEXT : m_cContext;
        context = GLUtils::createBackgroundContext(sharedContext);
    }

    if (context == EGL_NO_CONTEXT) {
        LOGE("eglCreateContext failed");
        return EGL_NO_CONTEXT;
    }

    // initialize the producer's textures
    m_textureA->lock();
    if (m_sharedTextureMode == EglImageMode)
        m_textureB->lock();

    m_textureA->initSourceTexture();
    LOGV("Initialized Textures A (%d)", m_textureA->getSourceTextureId());
    if (m_sharedTextureMode == EglImageMode) {
        m_textureB->initSourceTexture();
        LOGV("Initialized Textures B (%d)", m_textureB->getSourceTextureId());
    }

    m_textureA->unlock();
    if (m_sharedTextureMode == EglImageMode)
        m_textureB->unlock();

    m_pContext = context;
    return context;
}

// For MediaTexture only
void DoubleBufferedTexture::producerDeleteTextures()
{
    m_textureA->lock();
    if (m_sharedTextureMode == EglImageMode)
        m_textureB->lock();

    LOGV("Deleting Producer Textures A (%d)", m_textureA->getSourceTextureId());
    m_textureA->deleteSourceTexture();
    if (m_sharedTextureMode == EglImageMode){
        LOGV("Deleting Producer Textures B (%d)", m_textureB->getSourceTextureId());
        m_textureB->deleteSourceTexture();
    }

    m_textureA->unlock();
    if (m_sharedTextureMode == EglImageMode)
        m_textureB->unlock();
}

// For MediaTexture only
void DoubleBufferedTexture::consumerDeleteTextures()
{
    m_textureA->lock();
    if (m_sharedTextureMode == EglImageMode)
        m_textureB->lock();

    LOGV("Deleting Consumer Textures A (%d)", m_textureA->getTargetTextureId());
    m_textureA->deleteTargetTexture();
    if (m_sharedTextureMode == EglImageMode) {
        LOGV("Deleting Consumer Textures B (%d)", m_textureB->getTargetTextureId());
        m_textureB->deleteTargetTexture();
    }

    m_textureA->unlock();
    if (m_sharedTextureMode == EglImageMode)
        m_textureB->unlock();
}

TextureInfo* DoubleBufferedTexture::producerLock()
{
    SharedTexture* sharedTex = getWriteableTexture();
    LOGV("Acquiring P Lock (%d)", sharedTex->getSourceTextureId());
    TextureInfo* texInfo = sharedTex->lockSource();
    LOGV("Acquired P Lock");

    return texInfo;
}

void DoubleBufferedTexture::producerRelease()
{
    // get the writable texture and unlock it
    SharedTexture* sharedTex = getWriteableTexture();
    LOGV("Releasing P Lock (%d)", sharedTex->getSourceTextureId());
    sharedTex->releaseSource();
    LOGV("Released P Lock (%d)", sharedTex->getSourceTextureId());
}

void DoubleBufferedTexture::producerReleaseAndSwap()
{
    producerRelease();
    if (m_sharedTextureMode == EglImageMode) {
        // swap the front and back buffers using an atomic op for the memory barrier
        android_atomic_acquire_store((int32_t)getReadableTexture(), (int32_t*)&m_writeableTexture);
    }
}

TextureInfo* DoubleBufferedTexture::consumerLock()
{
    SharedTexture* sharedTex = getReadableTexture();
    LOGV("Acquiring C Lock (%d)", sharedTex->getSourceTextureId());
    m_lockedConsumerTexture = sharedTex;

    TextureInfo* texInfo = sharedTex->lockTarget();
    LOGV("Acquired C Lock");

    if (!texInfo)
        LOGV("Released C Lock (Empty)");

    return texInfo;
}

void DoubleBufferedTexture::consumerRelease()
{
    // we must check to see what texture the consumer had locked since the
    // producer may have swapped out the readable buffer
    SharedTexture* sharedTex = m_lockedConsumerTexture;
    sharedTex->releaseTarget();
    LOGV("Released C Lock (%d)", sharedTex->getSourceTextureId());
}

} // namespace WebCore