summaryrefslogtreecommitdiffstats
path: root/cc/CCRenderSurfaceFilters.h
blob: cd199b5679a69d5f82acda80f938cd23e286e1a7 (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
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.


#ifndef CCRenderSurfaceFilters_h
#define CCRenderSurfaceFilters_h

#if USE(ACCELERATED_COMPOSITING)

class GrContext;
class SkBitmap;

namespace WebKit {
class WebFilterOperations;
class WebGraphicsContext3D;
}

namespace cc {
class FloatSize;

class CCRenderSurfaceFilters {
public:
    static SkBitmap apply(const WebKit::WebFilterOperations& filters, unsigned textureId, const FloatSize&, WebKit::WebGraphicsContext3D*, GrContext*);
    static WebKit::WebFilterOperations optimize(const WebKit::WebFilterOperations& filters);

private:
    CCRenderSurfaceFilters();
};

}
#endif // USE(ACCELERATED_COMPOSITING)

#endif