| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
| 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. |
| 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
| 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 return false; | 198 return false; |
| 199 parameterList.append(parameter.release()); | 199 parameterList.append(parameter.release()); |
| 200 } | 200 } |
| 201 | 201 |
| 202 // Make sure we sort the parameters before passing them down to the CustomFi
lterOperation. | 202 // Make sure we sort the parameters before passing them down to the CustomFi
lterOperation. |
| 203 parameterList.sortParametersByName(); | 203 parameterList.sortParametersByName(); |
| 204 | 204 |
| 205 return true; | 205 return true; |
| 206 } | 206 } |
| 207 | 207 |
| 208 static PassRefPtr<CustomFilterOperation> createCustomFilterOperationWithAtRuleRe
ferenceSyntax(CSSFilterValue* filterValue) | 208 static PassRefPtr<CustomFilterOperation> createCustomFilterOperationWithAtRuleRe
ferenceSyntax(CSSFilterValue*) |
| 209 { | 209 { |
| 210 // FIXME: Implement style resolution for the custom filter at-rule reference
syntax. | 210 // FIXME: Implement style resolution for the custom filter at-rule reference
syntax. |
| 211 UNUSED_PARAM(filterValue); | |
| 212 return 0; | 211 return 0; |
| 213 } | 212 } |
| 214 | 213 |
| 215 static PassRefPtr<CustomFilterProgram> createCustomFilterProgram(CSSShaderValue*
vertexShader, CSSShaderValue* fragmentShader, | 214 static PassRefPtr<CustomFilterProgram> createCustomFilterProgram(CSSShaderValue*
vertexShader, CSSShaderValue* fragmentShader, |
| 216 CustomFilterProgramType programType, const CustomFilterProgramMixSettings& m
ixSettings, CustomFilterMeshType meshType, | 215 CustomFilterProgramType programType, const CustomFilterProgramMixSettings& m
ixSettings, CustomFilterMeshType meshType, |
| 217 StyleResolverState& state) | 216 StyleResolverState& state) |
| 218 { | 217 { |
| 219 ResourceFetcher* fetcher = state.document().fetcher(); | 218 ResourceFetcher* fetcher = state.document().fetcher(); |
| 220 KURL vertexShaderURL = vertexShader ? vertexShader->completeURL(fetcher) : K
URL(); | 219 KURL vertexShaderURL = vertexShader ? vertexShader->completeURL(fetcher) : K
URL(); |
| 221 KURL fragmentShaderURL = fragmentShader ? fragmentShader->completeURL(fetche
r) : KURL(); | 220 KURL fragmentShaderURL = fragmentShader ? fragmentShader->completeURL(fetche
r) : KURL(); |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 ASSERT_NOT_REACHED(); | 492 ASSERT_NOT_REACHED(); |
| 494 break; | 493 break; |
| 495 } | 494 } |
| 496 } | 495 } |
| 497 | 496 |
| 498 outOperations = operations; | 497 outOperations = operations; |
| 499 return true; | 498 return true; |
| 500 } | 499 } |
| 501 | 500 |
| 502 } // namespace WebCore | 501 } // namespace WebCore |
| OLD | NEW |