diff options
author | twiz@google.com <twiz@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-03-14 21:23:01 +0000 |
---|---|---|
committer | twiz@google.com <twiz@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-03-14 21:23:01 +0000 |
commit | 59a190bcab5d4b2bf03f8f10cb6a581d19fed403 (patch) | |
tree | 86335475250c187f467aeff3bfb8d81084016c1f /gpu/src/gr_files.mk | |
parent | cd9d69b9ce7eb301a9fd8d91b9f95fd99b07bae5 (diff) |
Implementation of a GL-virtualization layer for Skia. This allows for
environments using skia to specify a GL implementation at run-time, instead of
relying on the linker to pull in the appropriate GL impl.
A new structure, GrGLInterface is exposed. This struct contains a set of
function pointers that should point to an appropriate GL implementation.
This change also removes the reliance on GLew on windows builds.
Review: http://codereview.appspot.com/4254059/
git-svn-id: http://skia.googlecode.com/svn/trunk@937 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gpu/src/gr_files.mk')
-rw-r--r-- | gpu/src/gr_files.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gpu/src/gr_files.mk b/gpu/src/gr_files.mk index d0f41e748f..8aeddc9d8d 100644 --- a/gpu/src/gr_files.mk +++ b/gpu/src/gr_files.mk @@ -5,6 +5,7 @@ SOURCE := \ GrContext.cpp \ GrDrawTarget.cpp \ GrGLIndexBuffer.cpp \ + GrGLInterface.cpp \ GrGLTexture.cpp \ GrGLVertexBuffer.cpp \ GrGpu.cpp \ |