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

Side by Side Diff: third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h

Issue 2555213002: Implement color management for ImageData (Closed)
Patch Set: Work in progress Created 4 years 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
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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 namespace gles2 { 62 namespace gles2 {
63 class GLES2Interface; 63 class GLES2Interface;
64 } 64 }
65 } 65 }
66 66
67 namespace blink { 67 namespace blink {
68 68
69 class EXTDisjointTimerQuery; 69 class EXTDisjointTimerQuery;
70 class EXTDisjointTimerQueryWebGL2; 70 class EXTDisjointTimerQueryWebGL2;
71 class ExceptionState; 71 class ExceptionState;
72 class Float32ImageData;
Justin Novosad 2016/12/08 18:16:35 Why?
zakerinasab 2016/12/08 20:40:52 Removed for now.
72 class HTMLCanvasElementOrOffscreenCanvas; 73 class HTMLCanvasElementOrOffscreenCanvas;
73 class HTMLImageElement; 74 class HTMLImageElement;
74 class HTMLVideoElement; 75 class HTMLVideoElement;
75 class ImageBitmap; 76 class ImageBitmap;
76 class ImageBuffer; 77 class ImageBuffer;
77 class ImageData; 78 class ImageData;
78 class IntSize; 79 class IntSize;
79 class OESVertexArrayObject; 80 class OESVertexArrayObject;
80 class WebGLActiveInfo; 81 class WebGLActiveInfo;
81 class WebGLBuffer; 82 class WebGLBuffer;
(...skipping 1584 matching lines...) Expand 10 before | Expand all | Expand 10 after
1666 context, 1667 context,
1667 context->is3d(), 1668 context->is3d(),
1668 context.is3d()); 1669 context.is3d());
1669 1670
1670 } // namespace blink 1671 } // namespace blink
1671 1672
1672 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS( 1673 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(
1673 blink::WebGLRenderingContextBase::TextureUnitState); 1674 blink::WebGLRenderingContextBase::TextureUnitState);
1674 1675
1675 #endif // WebGLRenderingContextBase_h 1676 #endif // WebGLRenderingContextBase_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698