| 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 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above | 8 * 1. Redistributions of source code must retain the above |
| 9 * copyright notice, this list of conditions and the following | 9 * copyright notice, this list of conditions and the following |
| 10 * disclaimer. | 10 * disclaimer. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * SUCH DAMAGE. | 27 * SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #include "config.h" | 30 #include "config.h" |
| 31 #include "core/platform/graphics/filters/custom/CustomFilterValidatedProgram.h" | 31 #include "core/platform/graphics/filters/custom/CustomFilterValidatedProgram.h" |
| 32 | 32 |
| 33 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h" | 33 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h" |
| 34 #include "platform/NotImplemented.h" | 34 #include "platform/NotImplemented.h" |
| 35 #include "platform/graphics/angle/ANGLEPlatformBridge.h" | 35 #include "platform/graphics/angle/ANGLEPlatformBridge.h" |
| 36 #include "platform/graphics/filters/custom/CustomFilterConstants.h" | 36 #include "platform/graphics/filters/custom/CustomFilterConstants.h" |
| 37 #include "platform/graphics/filters/custom/CustomFilterProgramInfo.h" | |
| 38 #include "wtf/HashMap.h" | 37 #include "wtf/HashMap.h" |
| 39 #include "wtf/text/StringBuilder.h" | 38 #include "wtf/text/StringBuilder.h" |
| 40 #include "wtf/text/StringHash.h" | 39 #include "wtf/text/StringHash.h" |
| 41 #include "wtf/Vector.h" | 40 #include "wtf/Vector.h" |
| 42 | 41 |
| 43 namespace WebCore { | 42 namespace WebCore { |
| 44 | 43 |
| 45 #define SHADER(Src) (#Src) | 44 #define SHADER(Src) (#Src) |
| 46 | 45 |
| 47 typedef HashMap<String, ShDataType> SymbolNameToTypeMap; | 46 typedef HashMap<String, ShDataType> SymbolNameToTypeMap; |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 void CustomFilterValidatedProgram::platformInit() | 607 void CustomFilterValidatedProgram::platformInit() |
| 609 { | 608 { |
| 610 } | 609 } |
| 611 | 610 |
| 612 void CustomFilterValidatedProgram::platformDestroy() | 611 void CustomFilterValidatedProgram::platformDestroy() |
| 613 { | 612 { |
| 614 } | 613 } |
| 615 | 614 |
| 616 } // namespace WebCore | 615 } // namespace WebCore |
| 617 | 616 |
| OLD | NEW |