Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: Source/core/html/canvas/WebGLRenderingContextBase.h

Issue 171263004: Adding Blink-side support for EXT_shader_texture_lod (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed wrong extension string Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 EXTFragDepth; 54 class EXTFragDepth;
55 class EXTShaderTextureLOD;
55 class EXTTextureFilterAnisotropic; 56 class EXTTextureFilterAnisotropic;
56 class ExceptionState; 57 class ExceptionState;
57 class HTMLImageElement; 58 class HTMLImageElement;
58 class HTMLVideoElement; 59 class HTMLVideoElement;
59 class ImageBuffer; 60 class ImageBuffer;
60 class ImageData; 61 class ImageData;
61 class IntSize; 62 class IntSize;
62 class OESElementIndexUint; 63 class OESElementIndexUint;
63 class OESStandardDerivatives; 64 class OESStandardDerivatives;
64 class OESTextureFloat; 65 class OESTextureFloat;
(...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after
913 // If the vector is empty, return the maximum allowed active context number. 914 // If the vector is empty, return the maximum allowed active context number.
914 static size_t oldestContextIndex(); 915 static size_t oldestContextIndex();
915 static IntSize oldestContextSize(); 916 static IntSize oldestContextSize();
916 }; 917 };
917 918
918 DEFINE_TYPE_CASTS(WebGLRenderingContextBase, CanvasRenderingContext, context, co ntext->is3d(), context.is3d()); 919 DEFINE_TYPE_CASTS(WebGLRenderingContextBase, CanvasRenderingContext, context, co ntext->is3d(), context.is3d());
919 920
920 } // namespace WebCore 921 } // namespace WebCore
921 922
922 #endif // WebGLRenderingContextBase_h 923 #endif // WebGLRenderingContextBase_h
OLDNEW
« no previous file with comments | « Source/core/html/canvas/WebGLRenderingContext.cpp ('k') | Source/core/html/canvas/WebGLRenderingContextBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698