| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include "wtf/OwnPtr.h" | 44 #include "wtf/OwnPtr.h" |
| 45 #include "wtf/text/WTFString.h" | 45 #include "wtf/text/WTFString.h" |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 class WebLayer; | 48 class WebLayer; |
| 49 } | 49 } |
| 50 | 50 |
| 51 namespace WebCore { | 51 namespace WebCore { |
| 52 | 52 |
| 53 class ANGLEInstancedArrays; | 53 class ANGLEInstancedArrays; |
| 54 class EXTBlendMinMax; |
| 54 class EXTFragDepth; | 55 class EXTFragDepth; |
| 55 class EXTShaderTextureLOD; | 56 class EXTShaderTextureLOD; |
| 56 class EXTTextureFilterAnisotropic; | 57 class EXTTextureFilterAnisotropic; |
| 57 class ExceptionState; | 58 class ExceptionState; |
| 58 class HTMLImageElement; | 59 class HTMLImageElement; |
| 59 class HTMLVideoElement; | 60 class HTMLVideoElement; |
| 60 class ImageBuffer; | 61 class ImageBuffer; |
| 61 class ImageData; | 62 class ImageData; |
| 62 class IntSize; | 63 class IntSize; |
| 63 class OESElementIndexUint; | 64 class OESElementIndexUint; |
| (...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 925 // If the vector is empty, return the maximum allowed active context number. | 926 // If the vector is empty, return the maximum allowed active context number. |
| 926 static size_t oldestContextIndex(); | 927 static size_t oldestContextIndex(); |
| 927 static IntSize oldestContextSize(); | 928 static IntSize oldestContextSize(); |
| 928 }; | 929 }; |
| 929 | 930 |
| 930 DEFINE_TYPE_CASTS(WebGLRenderingContextBase, CanvasRenderingContext, context, co
ntext->is3d(), context.is3d()); | 931 DEFINE_TYPE_CASTS(WebGLRenderingContextBase, CanvasRenderingContext, context, co
ntext->is3d(), context.is3d()); |
| 931 | 932 |
| 932 } // namespace WebCore | 933 } // namespace WebCore |
| 933 | 934 |
| 934 #endif // WebGLRenderingContextBase_h | 935 #endif // WebGLRenderingContextBase_h |
| OLD | NEW |