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

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

Issue 287563002: Added Blink-side support for EXT_blend_minmax WebGL extension (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Made sure validation set the right glError Created 6 years, 7 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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