diff options
author | alokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-14 01:08:54 +0000 |
---|---|---|
committer | alokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-14 01:08:54 +0000 |
commit | d8c0ef76d07d5973d2a2354a410e31170aa4d73d (patch) | |
tree | cac01ff409d725a996ab344bb0a8cbb78d6af527 /third_party/gles2_book/gles2_book.gyp | |
parent | c40acc381fce1ac7f58975d45bd88e26a5e4a973 (diff) | |
download | chromium_src-d8c0ef76d07d5973d2a2354a410e31170aa4d73d.zip chromium_src-d8c0ef76d07d5973d2a2354a410e31170aa4d73d.tar.gz chromium_src-d8c0ef76d07d5973d2a2354a410e31170aa4d73d.tar.bz2 |
Added mip-mapping demo.
BUG=26099
TEST=Run mip_map_2d executable. You should see two quads with checker-board pattern. The left will exhibit aliasing but right one will be anti-aliased.
Review URL: http://codereview.chromium.org/542067
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36209 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/gles2_book/gles2_book.gyp')
-rw-r--r-- | third_party/gles2_book/gles2_book.gyp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/third_party/gles2_book/gles2_book.gyp b/third_party/gles2_book/gles2_book.gyp index 96a6673..d94fcc3 100644 --- a/third_party/gles2_book/gles2_book.gyp +++ b/third_party/gles2_book/gles2_book.gyp @@ -40,6 +40,17 @@ ], }, { + 'target_name': 'mip_map_2d', + 'type': 'static_library', + 'dependencies': [ + 'es_util', + ], + 'sources': [ + 'Chapter_9/MipMap2D/MipMap2D.c', + 'Chapter_9/MipMap2D/MipMap2D.h', + ], + }, + { 'target_name': 'simple_vertex_shader', 'type': 'static_library', 'dependencies': [ |