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

Side by Side Diff: gyp/gpu.gypi

Issue 885923002: Move DstCopy on gpu into the GrXferProcessor. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Back to bool Created 5 years, 10 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 | include/gpu/GrXferProcessor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Include this gypi to include all 'gpu' files 1 # Include this gypi to include all 'gpu' files
2 # The parent gyp/gypi file must define 2 # The parent gyp/gypi file must define
3 # 'skia_src_path' e.g. skia/trunk/src 3 # 'skia_src_path' e.g. skia/trunk/src
4 # 'skia_include_path' e.g. skia/trunk/include 4 # 'skia_include_path' e.g. skia/trunk/include
5 # 5 #
6 # The skia build defines these in common_variables.gypi 6 # The skia build defines these in common_variables.gypi
7 # 7 #
8 { 8 {
9 'variables': { 9 'variables': {
10 'skgpu_sources': [ 10 'skgpu_sources': [
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 '<(skia_src_path)/gpu/GrTemplates.h', 168 '<(skia_src_path)/gpu/GrTemplates.h',
169 '<(skia_src_path)/gpu/GrTextContext.cpp', 169 '<(skia_src_path)/gpu/GrTextContext.cpp',
170 '<(skia_src_path)/gpu/GrTextContext.h', 170 '<(skia_src_path)/gpu/GrTextContext.h',
171 '<(skia_src_path)/gpu/GrFontCache.cpp', 171 '<(skia_src_path)/gpu/GrFontCache.cpp',
172 '<(skia_src_path)/gpu/GrFontCache.h', 172 '<(skia_src_path)/gpu/GrFontCache.h',
173 '<(skia_src_path)/gpu/GrTexture.cpp', 173 '<(skia_src_path)/gpu/GrTexture.cpp',
174 '<(skia_src_path)/gpu/GrTexturePriv.h', 174 '<(skia_src_path)/gpu/GrTexturePriv.h',
175 '<(skia_src_path)/gpu/GrTextureAccess.cpp', 175 '<(skia_src_path)/gpu/GrTextureAccess.cpp',
176 '<(skia_src_path)/gpu/GrTRecorder.h', 176 '<(skia_src_path)/gpu/GrTRecorder.h',
177 '<(skia_src_path)/gpu/GrVertexBuffer.h', 177 '<(skia_src_path)/gpu/GrVertexBuffer.h',
178 '<(skia_src_path)/gpu/GrXferProcessor.cpp',
178 179
179 '<(skia_src_path)/gpu/effects/Gr1DKernelEffect.h', 180 '<(skia_src_path)/gpu/effects/Gr1DKernelEffect.h',
180 '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.cpp', 181 '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.cpp',
181 '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.h', 182 '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.h',
182 '<(skia_src_path)/gpu/effects/GrCoverageSetOpXP.cpp', 183 '<(skia_src_path)/gpu/effects/GrCoverageSetOpXP.cpp',
183 '<(skia_src_path)/gpu/effects/GrCoverageSetOpXP.h', 184 '<(skia_src_path)/gpu/effects/GrCoverageSetOpXP.h',
184 '<(skia_src_path)/gpu/effects/GrCustomXfermode.cpp', 185 '<(skia_src_path)/gpu/effects/GrCustomXfermode.cpp',
185 '<(skia_src_path)/gpu/effects/GrCustomXfermodePriv.h', 186 '<(skia_src_path)/gpu/effects/GrCustomXfermodePriv.h',
186 '<(skia_src_path)/gpu/effects/GrBezierEffect.cpp', 187 '<(skia_src_path)/gpu/effects/GrBezierEffect.cpp',
187 '<(skia_src_path)/gpu/effects/GrBezierEffect.h', 188 '<(skia_src_path)/gpu/effects/GrBezierEffect.h',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 '<(skia_src_path)/gpu/gl/GrGLTexture.cpp', 268 '<(skia_src_path)/gpu/gl/GrGLTexture.cpp',
268 '<(skia_src_path)/gpu/gl/GrGLTexture.h', 269 '<(skia_src_path)/gpu/gl/GrGLTexture.h',
269 '<(skia_src_path)/gpu/gl/GrGLTextureRenderTarget.h', 270 '<(skia_src_path)/gpu/gl/GrGLTextureRenderTarget.h',
270 '<(skia_src_path)/gpu/gl/GrGLUtil.cpp', 271 '<(skia_src_path)/gpu/gl/GrGLUtil.cpp',
271 '<(skia_src_path)/gpu/gl/GrGLUtil.h', 272 '<(skia_src_path)/gpu/gl/GrGLUtil.h',
272 '<(skia_src_path)/gpu/gl/GrGLUniformHandle.h', 273 '<(skia_src_path)/gpu/gl/GrGLUniformHandle.h',
273 '<(skia_src_path)/gpu/gl/GrGLVertexArray.cpp', 274 '<(skia_src_path)/gpu/gl/GrGLVertexArray.cpp',
274 '<(skia_src_path)/gpu/gl/GrGLVertexArray.h', 275 '<(skia_src_path)/gpu/gl/GrGLVertexArray.h',
275 '<(skia_src_path)/gpu/gl/GrGLVertexBuffer.cpp', 276 '<(skia_src_path)/gpu/gl/GrGLVertexBuffer.cpp',
276 '<(skia_src_path)/gpu/gl/GrGLVertexBuffer.h', 277 '<(skia_src_path)/gpu/gl/GrGLVertexBuffer.h',
278 '<(skia_src_path)/gpu/gl/GrGLXferProcessor.cpp',
279 '<(skia_src_path)/gpu/gl/GrGLXferProcessor.h',
277 280
278 # Files for building GLSL shaders 281 # Files for building GLSL shaders
279 '<(skia_src_path)/gpu/gl/builders/GrGLProgramBuilder.cpp', 282 '<(skia_src_path)/gpu/gl/builders/GrGLProgramBuilder.cpp',
280 '<(skia_src_path)/gpu/gl/builders/GrGLProgramBuilder.h', 283 '<(skia_src_path)/gpu/gl/builders/GrGLProgramBuilder.h',
281 '<(skia_src_path)/gpu/gl/builders/GrGLShaderBuilder.cpp', 284 '<(skia_src_path)/gpu/gl/builders/GrGLShaderBuilder.cpp',
282 '<(skia_src_path)/gpu/gl/builders/GrGLShaderBuilder.h', 285 '<(skia_src_path)/gpu/gl/builders/GrGLShaderBuilder.h',
283 '<(skia_src_path)/gpu/gl/builders/GrGLShaderStringBuilder.cpp', 286 '<(skia_src_path)/gpu/gl/builders/GrGLShaderStringBuilder.cpp',
284 '<(skia_src_path)/gpu/gl/builders/GrGLShaderStringBuilder.h', 287 '<(skia_src_path)/gpu/gl/builders/GrGLShaderStringBuilder.h',
285 '<(skia_src_path)/gpu/gl/builders/GrGLSLPrettyPrint.cpp', 288 '<(skia_src_path)/gpu/gl/builders/GrGLSLPrettyPrint.cpp',
286 '<(skia_src_path)/gpu/gl/builders/GrGLVertexShaderBuilder.cpp', 289 '<(skia_src_path)/gpu/gl/builders/GrGLVertexShaderBuilder.cpp',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 ], 371 ],
369 'skgpu_null_gl_sources': [ 372 'skgpu_null_gl_sources': [
370 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp', 373 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp',
371 374
372 # Sk files 375 # Sk files
373 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp', 376 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp',
374 '<(skia_src_path)/gpu/gl/SkNullGLContext.h', 377 '<(skia_src_path)/gpu/gl/SkNullGLContext.h',
375 ], 378 ],
376 }, 379 },
377 } 380 }
OLDNEW
« no previous file with comments | « no previous file | include/gpu/GrXferProcessor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698