Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: Source/core/platform/graphics/filters/custom/FECustomFilter.h

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above 9 * 1. Redistributions of source code must retain the above
10 * copyright notice, this list of conditions and the following 10 * copyright notice, this list of conditions and the following
(...skipping 13 matching lines...) Expand all
24 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE. 28 * SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef FECustomFilter_h 31 #ifndef FECustomFilter_h
32 #define FECustomFilter_h 32 #define FECustomFilter_h
33 33
34 #include "core/platform/graphics/filters/Filter.h"
35 #include "core/platform/graphics/filters/FilterEffect.h"
36 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" 34 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h"
37 #include "platform/graphics/GraphicsTypes3D.h" 35 #include "platform/graphics/GraphicsTypes3D.h"
36 #include "platform/graphics/filters/Filter.h"
37 #include "platform/graphics/filters/FilterEffect.h"
38 #include "platform/graphics/filters/custom/CustomFilterConstants.h" 38 #include "platform/graphics/filters/custom/CustomFilterConstants.h"
39 #include "wtf/RefPtr.h" 39 #include "wtf/RefPtr.h"
40 40
41 namespace WebCore { 41 namespace WebCore {
42 42
43 class CustomFilterRenderer; 43 class CustomFilterRenderer;
44 class CustomFilterValidatedProgram; 44 class CustomFilterValidatedProgram;
45 class GraphicsContext3D; 45 class GraphicsContext3D;
46 class IntSize; 46 class IntSize;
47 47
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 92
93 bool m_triedMultisampleBuffer; 93 bool m_triedMultisampleBuffer;
94 Platform3DObject m_multisampleFrameBuffer; 94 Platform3DObject m_multisampleFrameBuffer;
95 Platform3DObject m_multisampleRenderBuffer; 95 Platform3DObject m_multisampleRenderBuffer;
96 Platform3DObject m_multisampleDepthBuffer; 96 Platform3DObject m_multisampleDepthBuffer;
97 }; 97 };
98 98
99 } // namespace WebCore 99 } // namespace WebCore
100 100
101 #endif // FECustomFilter_h 101 #endif // FECustomFilter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698