| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. | 2 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. |
| 3 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. | 3 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. |
| 4 * Copyright (C) 2012 Company 100, Inc. All rights reserved. | 4 * Copyright (C) 2012 Company 100, Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * | 9 * |
| 10 * 1. Redistributions of source code must retain the above | 10 * 1. Redistributions of source code must retain the above |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR |
| 27 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF | 27 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF |
| 28 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 28 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 29 * SUCH DAMAGE. | 29 * SUCH DAMAGE. |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 #ifndef CustomFilterRenderer_h | 32 #ifndef CustomFilterRenderer_h |
| 33 #define CustomFilterRenderer_h | 33 #define CustomFilterRenderer_h |
| 34 | 34 |
| 35 #include "core/platform/graphics/GraphicsTypes3D.h" | |
| 36 #include "core/platform/graphics/filters/custom/CustomFilterConstants.h" | 35 #include "core/platform/graphics/filters/custom/CustomFilterConstants.h" |
| 37 #include "core/platform/graphics/filters/custom/CustomFilterParameterList.h" | 36 #include "core/platform/graphics/filters/custom/CustomFilterParameterList.h" |
| 38 #include "platform/geometry/IntSize.h" | 37 #include "platform/geometry/IntSize.h" |
| 38 #include "platform/graphics/GraphicsTypes3D.h" |
| 39 #include "wtf/RefCounted.h" | 39 #include "wtf/RefCounted.h" |
| 40 #include "wtf/RefPtr.h" | 40 #include "wtf/RefPtr.h" |
| 41 | 41 |
| 42 namespace WebCore { | 42 namespace WebCore { |
| 43 | 43 |
| 44 class CustomFilterArrayParameter; | 44 class CustomFilterArrayParameter; |
| 45 class CustomFilterCompiledProgram; | 45 class CustomFilterCompiledProgram; |
| 46 class CustomFilterMesh; | 46 class CustomFilterMesh; |
| 47 class CustomFilterNumberParameter; | 47 class CustomFilterNumberParameter; |
| 48 class CustomFilterTransformParameter; | 48 class CustomFilterTransformParameter; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 CustomFilterParameterList m_parameters; | 89 CustomFilterParameterList m_parameters; |
| 90 | 90 |
| 91 unsigned m_meshRows; | 91 unsigned m_meshRows; |
| 92 unsigned m_meshColumns; | 92 unsigned m_meshColumns; |
| 93 CustomFilterMeshType m_meshType; | 93 CustomFilterMeshType m_meshType; |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 } // namespace WebCore | 96 } // namespace WebCore |
| 97 | 97 |
| 98 #endif // CustomFilterRenderer_h | 98 #endif // CustomFilterRenderer_h |
| OLD | NEW |