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

Side by Side Diff: gyp/gpu.gypi

Issue 1254833003: Added GrGLBlend.h|cpp with helper function AppendPorterDuffBlend() in preparation for SkComposeShad… (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: More nits by Greg Created 5 years, 4 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
« no previous file with comments | « no previous file | src/gpu/effects/GrPorterDuffXferProcessor.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # Include this gypi to include all 'gpu' files 5 # Include this gypi to include all 'gpu' files
6 # The parent gyp/gypi file must define 6 # The parent gyp/gypi file must define
7 # 'skia_src_path' e.g. skia/trunk/src 7 # 'skia_src_path' e.g. skia/trunk/src
8 # 'skia_include_path' e.g. skia/trunk/include 8 # 'skia_include_path' e.g. skia/trunk/include
9 # 9 #
10 # The skia build defines these in common_variables.gypi 10 # The skia build defines these in common_variables.gypi
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 '<(skia_src_path)/gpu/effects/GrSingleTextureEffect.h', 262 '<(skia_src_path)/gpu/effects/GrSingleTextureEffect.h',
263 '<(skia_src_path)/gpu/effects/GrTextureDomain.cpp', 263 '<(skia_src_path)/gpu/effects/GrTextureDomain.cpp',
264 '<(skia_src_path)/gpu/effects/GrTextureDomain.h', 264 '<(skia_src_path)/gpu/effects/GrTextureDomain.h',
265 '<(skia_src_path)/gpu/effects/GrTextureStripAtlas.cpp', 265 '<(skia_src_path)/gpu/effects/GrTextureStripAtlas.cpp',
266 '<(skia_src_path)/gpu/effects/GrTextureStripAtlas.h', 266 '<(skia_src_path)/gpu/effects/GrTextureStripAtlas.h',
267 '<(skia_src_path)/gpu/effects/GrYUVtoRGBEffect.cpp', 267 '<(skia_src_path)/gpu/effects/GrYUVtoRGBEffect.cpp',
268 '<(skia_src_path)/gpu/effects/GrYUVtoRGBEffect.h', 268 '<(skia_src_path)/gpu/effects/GrYUVtoRGBEffect.h',
269 269
270 '<(skia_src_path)/gpu/gl/GrGLAssembleInterface.cpp', 270 '<(skia_src_path)/gpu/gl/GrGLAssembleInterface.cpp',
271 '<(skia_src_path)/gpu/gl/GrGLAssembleInterface.h', 271 '<(skia_src_path)/gpu/gl/GrGLAssembleInterface.h',
272 '<(skia_src_path)/gpu/gl/GrGLBlend.cpp',
273 '<(skia_src_path)/gpu/gl/GrGLBlend.h',
272 '<(skia_src_path)/gpu/gl/GrGLBufferImpl.cpp', 274 '<(skia_src_path)/gpu/gl/GrGLBufferImpl.cpp',
273 '<(skia_src_path)/gpu/gl/GrGLBufferImpl.h', 275 '<(skia_src_path)/gpu/gl/GrGLBufferImpl.h',
274 '<(skia_src_path)/gpu/gl/GrGLCaps.cpp', 276 '<(skia_src_path)/gpu/gl/GrGLCaps.cpp',
275 '<(skia_src_path)/gpu/gl/GrGLCaps.h', 277 '<(skia_src_path)/gpu/gl/GrGLCaps.h',
276 '<(skia_src_path)/gpu/gl/GrGLContext.cpp', 278 '<(skia_src_path)/gpu/gl/GrGLContext.cpp',
277 '<(skia_src_path)/gpu/gl/GrGLContext.h', 279 '<(skia_src_path)/gpu/gl/GrGLContext.h',
278 '<(skia_src_path)/gpu/gl/GrGLCreateNativeInterface_none.cpp', 280 '<(skia_src_path)/gpu/gl/GrGLCreateNativeInterface_none.cpp',
279 '<(skia_src_path)/gpu/gl/GrGLDefaultInterface_none.cpp', 281 '<(skia_src_path)/gpu/gl/GrGLDefaultInterface_none.cpp',
280 '<(skia_src_path)/gpu/gl/GrGLDefines.h', 282 '<(skia_src_path)/gpu/gl/GrGLDefines.h',
281 '<(skia_src_path)/gpu/gl/GrGLGeometryProcessor.cpp', 283 '<(skia_src_path)/gpu/gl/GrGLGeometryProcessor.cpp',
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 '<(skia_src_path)/gpu/gl/debug/SkDebugGLContext.cpp', 434 '<(skia_src_path)/gpu/gl/debug/SkDebugGLContext.cpp',
433 '<(skia_src_path)/gpu/gl/debug/SkDebugGLContext.h', 435 '<(skia_src_path)/gpu/gl/debug/SkDebugGLContext.h',
434 ], 436 ],
435 'skgpu_null_gl_sources': [ 437 'skgpu_null_gl_sources': [
436 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp', 438 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp',
437 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp', 439 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp',
438 '<(skia_include_path)/gpu/gl/SkNullGLContext.h', 440 '<(skia_include_path)/gpu/gl/SkNullGLContext.h',
439 ], 441 ],
440 }, 442 },
441 } 443 }
OLDNEW
« no previous file with comments | « no previous file | src/gpu/effects/GrPorterDuffXferProcessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698