| OLD | NEW |
| 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 Loading... |
| 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 #if USE(3D_GRAPHICS) | |
| 35 | |
| 36 #include "core/platform/graphics/GraphicsTypes3D.h" | 34 #include "core/platform/graphics/GraphicsTypes3D.h" |
| 37 #include "core/platform/graphics/filters/Filter.h" | 35 #include "core/platform/graphics/filters/Filter.h" |
| 38 #include "core/platform/graphics/filters/FilterEffect.h" | 36 #include "core/platform/graphics/filters/FilterEffect.h" |
| 39 #include "core/platform/graphics/filters/custom/CustomFilterConstants.h" | 37 #include "core/platform/graphics/filters/custom/CustomFilterConstants.h" |
| 40 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" | 38 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" |
| 41 #include <wtf/RefPtr.h> | 39 #include <wtf/RefPtr.h> |
| 42 | 40 |
| 43 namespace WebCore { | 41 namespace WebCore { |
| 44 | 42 |
| 45 class CustomFilterRenderer; | 43 class CustomFilterRenderer; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 Platform3DObject m_destTexture; | 91 Platform3DObject m_destTexture; |
| 94 | 92 |
| 95 bool m_triedMultisampleBuffer; | 93 bool m_triedMultisampleBuffer; |
| 96 Platform3DObject m_multisampleFrameBuffer; | 94 Platform3DObject m_multisampleFrameBuffer; |
| 97 Platform3DObject m_multisampleRenderBuffer; | 95 Platform3DObject m_multisampleRenderBuffer; |
| 98 Platform3DObject m_multisampleDepthBuffer; | 96 Platform3DObject m_multisampleDepthBuffer; |
| 99 }; | 97 }; |
| 100 | 98 |
| 101 } // namespace WebCore | 99 } // namespace WebCore |
| 102 | 100 |
| 103 #endif // USE(3D_GRAPHICS) | |
| 104 | |
| 105 #endif // FECustomFilter_h | 101 #endif // FECustomFilter_h |
| OLD | NEW |