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

Side by Side Diff: gyp/gpu.gypi

Issue 2154753003: Introduce GrColorSpaceXform, for gamut conversion on textures (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: More progress & refactoring Created 4 years, 5 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 | « gm/texturedomaineffect.cpp ('k') | include/gpu/GrColorSpaceXform.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 # 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
11 # 11 #
12 { 12 {
13 'variables': { 13 'variables': {
14 'skgpu_sources': [ 14 'skgpu_sources': [
15 '<(skia_include_path)/gpu/GrBlend.h', 15 '<(skia_include_path)/gpu/GrBlend.h',
16 '<(skia_include_path)/gpu/GrBuffer.h', 16 '<(skia_include_path)/gpu/GrBuffer.h',
17 '<(skia_include_path)/gpu/GrBufferAccess.h', 17 '<(skia_include_path)/gpu/GrBufferAccess.h',
18 '<(skia_include_path)/gpu/GrCaps.h', 18 '<(skia_include_path)/gpu/GrCaps.h',
19 '<(skia_include_path)/gpu/GrClip.h', 19 '<(skia_include_path)/gpu/GrClip.h',
20 '<(skia_include_path)/gpu/GrColor.h', 20 '<(skia_include_path)/gpu/GrColor.h',
21 '<(skia_include_path)/gpu/GrColorSpaceXform.h',
21 '<(skia_include_path)/gpu/GrConfig.h', 22 '<(skia_include_path)/gpu/GrConfig.h',
22 '<(skia_include_path)/gpu/GrContextOptions.h', 23 '<(skia_include_path)/gpu/GrContextOptions.h',
23 '<(skia_include_path)/gpu/GrContext.h', 24 '<(skia_include_path)/gpu/GrContext.h',
24 '<(skia_include_path)/gpu/GrCoordTransform.h', 25 '<(skia_include_path)/gpu/GrCoordTransform.h',
25 '<(skia_include_path)/gpu/GrDrawContext.h', 26 '<(skia_include_path)/gpu/GrDrawContext.h',
26 '<(skia_include_path)/gpu/GrFragmentProcessor.h', 27 '<(skia_include_path)/gpu/GrFragmentProcessor.h',
27 '<(skia_include_path)/gpu/GrGpuResource.h', 28 '<(skia_include_path)/gpu/GrGpuResource.h',
28 '<(skia_include_path)/gpu/GrInvariantOutput.h', 29 '<(skia_include_path)/gpu/GrInvariantOutput.h',
29 '<(skia_include_path)/gpu/GrPaint.h', 30 '<(skia_include_path)/gpu/GrPaint.h',
30 '<(skia_include_path)/gpu/GrProcessor.h', 31 '<(skia_include_path)/gpu/GrProcessor.h',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 '<(skia_src_path)/gpu/GrBlend.cpp', 79 '<(skia_src_path)/gpu/GrBlend.cpp',
79 '<(skia_src_path)/gpu/GrBlurUtils.cpp', 80 '<(skia_src_path)/gpu/GrBlurUtils.cpp',
80 '<(skia_src_path)/gpu/GrBlurUtils.h', 81 '<(skia_src_path)/gpu/GrBlurUtils.h',
81 '<(skia_src_path)/gpu/GrBuffer.cpp', 82 '<(skia_src_path)/gpu/GrBuffer.cpp',
82 '<(skia_src_path)/gpu/GrBufferAllocPool.cpp', 83 '<(skia_src_path)/gpu/GrBufferAllocPool.cpp',
83 '<(skia_src_path)/gpu/GrBufferAllocPool.h', 84 '<(skia_src_path)/gpu/GrBufferAllocPool.h',
84 '<(skia_src_path)/gpu/GrCaps.cpp', 85 '<(skia_src_path)/gpu/GrCaps.cpp',
85 '<(skia_src_path)/gpu/GrClip.cpp', 86 '<(skia_src_path)/gpu/GrClip.cpp',
86 '<(skia_src_path)/gpu/GrClipMaskManager.h', 87 '<(skia_src_path)/gpu/GrClipMaskManager.h',
87 '<(skia_src_path)/gpu/GrClipMaskManager.cpp', 88 '<(skia_src_path)/gpu/GrClipMaskManager.cpp',
89 '<(skia_src_path)/gpu/GrColorSpaceXform.cpp',
88 '<(skia_src_path)/gpu/GrContext.cpp', 90 '<(skia_src_path)/gpu/GrContext.cpp',
89 '<(skia_src_path)/gpu/GrCoordTransform.cpp', 91 '<(skia_src_path)/gpu/GrCoordTransform.cpp',
90 '<(skia_src_path)/gpu/GrDefaultGeoProcFactory.cpp', 92 '<(skia_src_path)/gpu/GrDefaultGeoProcFactory.cpp',
91 '<(skia_src_path)/gpu/GrDefaultGeoProcFactory.h', 93 '<(skia_src_path)/gpu/GrDefaultGeoProcFactory.h',
92 '<(skia_src_path)/gpu/GrDrawContext.cpp', 94 '<(skia_src_path)/gpu/GrDrawContext.cpp',
93 '<(skia_src_path)/gpu/GrDrawContextPriv.h', 95 '<(skia_src_path)/gpu/GrDrawContextPriv.h',
94 '<(skia_src_path)/gpu/GrPathRenderingDrawContext.cpp', 96 '<(skia_src_path)/gpu/GrPathRenderingDrawContext.cpp',
95 '<(skia_src_path)/gpu/GrPathRenderingDrawContext.h', 97 '<(skia_src_path)/gpu/GrPathRenderingDrawContext.h',
96 '<(skia_src_path)/gpu/GrDrawingManager.cpp', 98 '<(skia_src_path)/gpu/GrDrawingManager.cpp',
97 '<(skia_src_path)/gpu/GrDrawingManager.h', 99 '<(skia_src_path)/gpu/GrDrawingManager.h',
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 '<(skia_src_path)/gpu/gl/builders/GrGLSLPrettyPrint.cpp', 390 '<(skia_src_path)/gpu/gl/builders/GrGLSLPrettyPrint.cpp',
389 391
390 # GLSL 392 # GLSL
391 '<(skia_src_path)/gpu/glsl/GrGLSL.cpp', 393 '<(skia_src_path)/gpu/glsl/GrGLSL.cpp',
392 '<(skia_src_path)/gpu/glsl/GrGLSL.h', 394 '<(skia_src_path)/gpu/glsl/GrGLSL.h',
393 '<(skia_src_path)/gpu/glsl/GrGLSL_impl.h', 395 '<(skia_src_path)/gpu/glsl/GrGLSL_impl.h',
394 '<(skia_src_path)/gpu/glsl/GrGLSLBlend.cpp', 396 '<(skia_src_path)/gpu/glsl/GrGLSLBlend.cpp',
395 '<(skia_src_path)/gpu/glsl/GrGLSLBlend.h', 397 '<(skia_src_path)/gpu/glsl/GrGLSLBlend.h',
396 '<(skia_src_path)/gpu/glsl/GrGLSLCaps.cpp', 398 '<(skia_src_path)/gpu/glsl/GrGLSLCaps.cpp',
397 '<(skia_src_path)/gpu/glsl/GrGLSLCaps.h', 399 '<(skia_src_path)/gpu/glsl/GrGLSLCaps.h',
400 '<(skia_src_path)/gpu/glsl/GrGLSLColorSpaceXformHelper.h',
398 '<(skia_src_path)/gpu/glsl/GrGLSLFragmentProcessor.cpp', 401 '<(skia_src_path)/gpu/glsl/GrGLSLFragmentProcessor.cpp',
399 '<(skia_src_path)/gpu/glsl/GrGLSLFragmentProcessor.h', 402 '<(skia_src_path)/gpu/glsl/GrGLSLFragmentProcessor.h',
400 '<(skia_src_path)/gpu/glsl/GrGLSLFragmentShaderBuilder.cpp', 403 '<(skia_src_path)/gpu/glsl/GrGLSLFragmentShaderBuilder.cpp',
401 '<(skia_src_path)/gpu/glsl/GrGLSLFragmentShaderBuilder.h', 404 '<(skia_src_path)/gpu/glsl/GrGLSLFragmentShaderBuilder.h',
402 '<(skia_src_path)/gpu/glsl/GrGLSLGeometryProcessor.cpp', 405 '<(skia_src_path)/gpu/glsl/GrGLSLGeometryProcessor.cpp',
403 '<(skia_src_path)/gpu/glsl/GrGLSLGeometryProcessor.h', 406 '<(skia_src_path)/gpu/glsl/GrGLSLGeometryProcessor.h',
404 '<(skia_src_path)/gpu/glsl/GrGLSLGeometryShaderBuilder.cpp', 407 '<(skia_src_path)/gpu/glsl/GrGLSLGeometryShaderBuilder.cpp',
405 '<(skia_src_path)/gpu/glsl/GrGLSLGeometryShaderBuilder.h', 408 '<(skia_src_path)/gpu/glsl/GrGLSLGeometryShaderBuilder.h',
406 '<(skia_src_path)/gpu/glsl/GrGLSLPrimitiveProcessor.cpp', 409 '<(skia_src_path)/gpu/glsl/GrGLSLPrimitiveProcessor.cpp',
407 '<(skia_src_path)/gpu/glsl/GrGLSLPrimitiveProcessor.h', 410 '<(skia_src_path)/gpu/glsl/GrGLSLPrimitiveProcessor.h',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 '<(skia_src_path)/gpu/gl/win/GrGLCreateNativeInterface_win.cpp', 520 '<(skia_src_path)/gpu/gl/win/GrGLCreateNativeInterface_win.cpp',
518 '<(skia_src_path)/gpu/gl/glx/GrGLCreateNativeInterface_glx.cpp', 521 '<(skia_src_path)/gpu/gl/glx/GrGLCreateNativeInterface_glx.cpp',
519 '<(skia_src_path)/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp', 522 '<(skia_src_path)/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp',
520 '<(skia_src_path)/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp', 523 '<(skia_src_path)/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp',
521 '<(skia_src_path)/gpu/gl/android/GrGLCreateNativeInterface_android.cpp', 524 '<(skia_src_path)/gpu/gl/android/GrGLCreateNativeInterface_android.cpp',
522 ], 525 ],
523 'skgpu_null_gl_sources': [ 526 'skgpu_null_gl_sources': [
524 ], 527 ],
525 }, 528 },
526 } 529 }
OLDNEW
« no previous file with comments | « gm/texturedomaineffect.cpp ('k') | include/gpu/GrColorSpaceXform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698