gecko/gfx/layers/opengl
Benoit Jacob 15ef84b8b5 Bug 959448 - Convert most of LayersTypes.h to typed enums - r=nrc
find content/media dom/ipc widget/ gfx/tests gfx/ipc/ gfx/layers/ layout/ -type f | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)LAYERS_\(NONE\|BASIC\|OPENGL\|D3D9\|D3D10\|D3D11\|CLIENT\|LAST\)\($\|[^A-Za-z0-9_]\)/\1LayersBackend::LAYERS_\2\3/g'

find widget gfx/layers/ layout/ -type f | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)BUFFER_\(NONE\)\($\|[^A-Za-z0-9_]\)/\1BufferMode::BUFFER_\2\3/g'

find widget gfx/layers/ layout/ -type f | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)BUFFER_\(BUFFERED\)\($\|[^A-Za-z0-9_]\)/\1BufferMode::\2\3/g'

find gfx/layers/ layout/ -type f | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)CLIP_\(DRAW\|DRAW_SNAPPED\)\($\|[^A-Za-z0-9_]\)/\1DrawRegionClip::\2\3/g'

find gfx/layers/ layout/ -type f | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)CLIP_\(NONE\)\($\|[^A-Za-z0-9_]\)/\1DrawRegionClip::CLIP_\2\3/g'

find gfx/layers/ layout/ -type f | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)SURFACE_\(NONE\|OPAQUE\|SINGLE_CHANNEL_ALPHA\|COMPONENT_ALPHA\)\($\|[^A-Za-z0-9_]\)/\1SurfaceMode::SURFACE_\2\3/g'

find gfx/ipc/ gfx/layers/ layout/ -type f | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)SCALE_\(STRETCH\|SENTINEL\)\($\|[^A-Za-z0-9_]\)/\1ScaleMode::\2\3/g'

find gfx/ipc/ gfx/layers/ layout/ -type f | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)SCALE_\(NONE\)\($\|[^A-Za-z0-9_]\)/\1ScaleMode::SCALE_\2\3/g'
2014-01-23 13:26:41 -05:00
..
Composer2D.h Bug 952977: Switch GL world transform to gfx::Matrix r=nical 2014-01-16 02:22:19 -05:00
CompositingRenderTargetOGL.cpp Bug 877115 - Remove GetTexImage from GLContext helper. r=nical 2014-01-08 09:37:58 +01:00
CompositingRenderTargetOGL.h Bug 958375 - 4/9 - Make SurfaceFormat a typed enum - r=Bas 2014-01-10 14:06:16 -05:00
CompositorOGL.cpp Bug 959448 - Convert most of LayersTypes.h to typed enums - r=nrc 2014-01-23 13:26:41 -05:00
CompositorOGL.h Bug 959448 - Convert most of LayersTypes.h to typed enums - r=nrc 2014-01-23 13:26:41 -05:00
EGLImageHelpers.cpp Bug 949814 - Remove GetEGLContext and GetLibraryEGL from GLContext - r=jgilbert 2014-01-02 10:17:25 -05:00
EGLImageHelpers.h Bug 942502 - Move EGLImage/GraphicBuffer-specific helpers out of GLContext - r=bjacob 2013-12-10 15:47:19 +10:00
FPSCounter.h Bug 938970 - 5/5. Switch gfx/layers to UNIFIED_SOURCES - r=ehsan,mattwoodrow 2013-11-17 21:07:08 -05:00
genshaders.py
genshaders.sh Bug 924403. Rename OGL shaders files. r=mattwoodrow 2013-11-27 11:15:17 +13:00
GLManager.cpp Bug 959448 - Convert most of LayersTypes.h to typed enums - r=nrc 2014-01-23 13:26:41 -05:00
GLManager.h Bug 946958 part 4. Tidy up interaction with widgets. r=kats 2013-12-09 14:40:59 +13:00
GrallocTextureClient.cpp Bug 961405 - Change GraphicBufferLocked as to use AtomicRefCountedWithFinalize. r=nical, r=pchang, r=doublec, r=mikeh 2014-01-21 13:53:48 -05:00
GrallocTextureClient.h Bug 893304 - Convert CanvasClient to new TextureClint/Host and replace SurfaceDescriptors with TextureClients inside SharedSurfaces. r=nical, r=snorp, r=jgilbert, r=bjacob 2014-01-10 08:06:06 -05:00
GrallocTextureHost.cpp Backed out changeset 60698fb6579b (bug 959171) for B2G mochitest-3 crashes. 2014-01-21 15:07:48 -05:00
GrallocTextureHost.h Bug 957499: Fix SetCompositor() signature in subclasses of NewTextureSource, to actually override the parent's impl (and to fix -Woverloaded-virtual build warnings). r=nical 2014-01-08 11:25:52 -08:00
MacIOSurfaceTextureClientOGL.cpp Bug 938970 - 1/5. Move MacIOSurfaceTexture* classes to separate files, minimize the number of cpp files including MacIOSurface.h - r=mattwoodrow 2013-11-17 21:04:38 -05:00
MacIOSurfaceTextureClientOGL.h Bug 938970 - 1/5. Move MacIOSurfaceTexture* classes to separate files, minimize the number of cpp files including MacIOSurface.h - r=mattwoodrow 2013-11-17 21:04:38 -05:00
MacIOSurfaceTextureHostOGL.cpp Bug 958375 - 4/9 - Make SurfaceFormat a typed enum - r=Bas 2014-01-10 14:06:16 -05:00
MacIOSurfaceTextureHostOGL.h Bug 957499: Fix SetCompositor() signature in subclasses of NewTextureSource, to actually override the parent's impl (and to fix -Woverloaded-virtual build warnings). r=nical 2014-01-08 11:25:52 -08:00
OGLShaderProgram.cpp Bug 929513 - Replace some instances of gfxIntSize with gfx::IntSize r=nical 2013-12-13 18:32:02 +01:00
OGLShaderProgram.h Bug 959380 - 4/5 - Make gfxContentType a typed enum - r=jrmuizel 2014-01-23 13:26:40 -05:00
OGLShaders.h Bug 956141 - Move y-flipping feature out of GLContext, into CompositorOGL - r=jgilbert,nrc 2014-01-07 15:02:18 -05:00
OGLShaders.txt Bug 956141 - Move y-flipping feature out of GLContext, into CompositorOGL - r=jgilbert,nrc 2014-01-07 15:02:18 -05:00
TextureClientOGL.cpp Backed out changeset 24668220c9a4 (bug 952507) for OS X Build Bustage on a CLOSED TREE 2014-01-23 15:50:14 +01:00
TextureClientOGL.h Bug 959380 - 4/5 - Make gfxContentType a typed enum - r=jrmuizel 2014-01-23 13:26:40 -05:00
TextureHostOGL.cpp Bug 959380 - 4/5 - Make gfxContentType a typed enum - r=jrmuizel 2014-01-23 13:26:40 -05:00
TextureHostOGL.h Bug 959380 - 4/5 - Make gfxContentType a typed enum - r=jrmuizel 2014-01-23 13:26:40 -05:00
TexturePoolOGL.cpp
TexturePoolOGL.h