~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebKit2/Shared/CoordinatedGraphics/WebCustomFilterProgramProxy.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions
 
6
 * are met:
 
7
 *
 
8
 * 1. Redistributions of source code must retain the above
 
9
 *    copyright notice, this list of conditions and the following
 
10
 *    disclaimer.
 
11
 * 2. Redistributions in binary form must reproduce the above
 
12
 *    copyright notice, this list of conditions and the following
 
13
 *    disclaimer in the documentation and/or other materials
 
14
 *    provided with the distribution.
 
15
 *
 
16
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER "AS IS" AND ANY
 
17
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
18
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
19
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
 
20
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
 
21
 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
22
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
23
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
 
25
 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
 
26
 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
27
 * SUCH DAMAGE.
 
28
 */
 
29
 
 
30
#ifndef WebCustomFilterProgramProxy_h
 
31
#define WebCustomFilterProgramProxy_h
 
32
 
 
33
#if USE(COORDINATED_GRAPHICS) && ENABLE(CSS_SHADERS)
 
34
 
 
35
#include "TextureMapperPlatformCompiledProgram.h"
 
36
#include <wtf/RefCounted.h>
 
37
 
 
38
namespace WebKit {
 
39
 
 
40
class WebCustomFilterProgramProxy;
 
41
 
 
42
class WebCustomFilterProgramProxyClient {
 
43
public:
 
44
    virtual void removeCustomFilterProgramProxy(WebCustomFilterProgramProxy*) = 0;
 
45
};
 
46
 
 
47
// This is a proxy class used to store the ID of the custom filter program serialized to the other process.
 
48
// It lives in the WebProcess and is referenced from the CustomFilterValidatedProgram meaning that it will be kept alive as
 
49
// long as a layer on the page will render with this program. It will call removeCustomFilterProgramProxy on the m_client
 
50
// when the program is no longer needed to render the filter. The client can then send a message to the UI process
 
51
// to destroy the associated reference. Note that more layers can share the same program and there's
 
52
// no need to implement a caching mechanism in the compositor side.
 
53
 
 
54
class WebCustomFilterProgramProxy : public RefCounted<WebCustomFilterProgramProxy>, public WebCore::TextureMapperPlatformCompiledProgramClient {
 
55
public:
 
56
    using RefCounted<WebCustomFilterProgramProxy>::ref;
 
57
    using RefCounted<WebCustomFilterProgramProxy>::deref;
 
58
 
 
59
    static PassRefPtr<WebCustomFilterProgramProxy> create()
 
60
    {
 
61
        return adoptRef(new WebCustomFilterProgramProxy());
 
62
    }
 
63
 
 
64
    int id() const { return m_id; }
 
65
 
 
66
    // Needed to make TextureMapperPlatformCompiledProgramClient look like a RefCounted object.
 
67
    virtual void refFromValidatedProgram() { ref(); }
 
68
    virtual void derefFromValidatedProgram() { deref(); }
 
69
 
 
70
    virtual ~WebCustomFilterProgramProxy();
 
71
    
 
72
    void setClient(WebCustomFilterProgramProxyClient* client) { m_client = client; }
 
73
    WebCustomFilterProgramProxyClient* client() const { return m_client; }
 
74
 
 
75
private:
 
76
    WebCustomFilterProgramProxy()
 
77
        : m_client(0)
 
78
        , m_id(s_nextId++)
 
79
    {
 
80
    }
 
81
    
 
82
    WebCustomFilterProgramProxyClient* m_client;
 
83
    int m_id;
 
84
    
 
85
    static int s_nextId;
 
86
};
 
87
 
 
88
} // namespace WebKit
 
89
 
 
90
#endif // USE(COORDINATED_GRAPHICS) && ENABLE(CSS_SHADERS)
 
91
 
 
92
#endif // WebCustomFilterProgramProxy_h
 
93