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

Side by Side Diff: gyp/gpu.gypi

Issue 1814113002: Store null GL context's state in interface object (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add overrides Created 4 years, 9 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/gl/GrGLFunctions.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
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 '<(skia_src_path)/gpu/gl/GrGLProgram.cpp', 344 '<(skia_src_path)/gpu/gl/GrGLProgram.cpp',
345 '<(skia_src_path)/gpu/gl/GrGLProgram.h', 345 '<(skia_src_path)/gpu/gl/GrGLProgram.h',
346 '<(skia_src_path)/gpu/gl/GrGLProgramDesc.cpp', 346 '<(skia_src_path)/gpu/gl/GrGLProgramDesc.cpp',
347 '<(skia_src_path)/gpu/gl/GrGLProgramDesc.h', 347 '<(skia_src_path)/gpu/gl/GrGLProgramDesc.h',
348 '<(skia_src_path)/gpu/gl/GrGLProgramDataManager.cpp', 348 '<(skia_src_path)/gpu/gl/GrGLProgramDataManager.cpp',
349 '<(skia_src_path)/gpu/gl/GrGLProgramDataManager.h', 349 '<(skia_src_path)/gpu/gl/GrGLProgramDataManager.h',
350 '<(skia_src_path)/gpu/gl/GrGLRenderTarget.cpp', 350 '<(skia_src_path)/gpu/gl/GrGLRenderTarget.cpp',
351 '<(skia_src_path)/gpu/gl/GrGLRenderTarget.h', 351 '<(skia_src_path)/gpu/gl/GrGLRenderTarget.h',
352 '<(skia_src_path)/gpu/gl/GrGLStencilAttachment.cpp', 352 '<(skia_src_path)/gpu/gl/GrGLStencilAttachment.cpp',
353 '<(skia_src_path)/gpu/gl/GrGLStencilAttachment.h', 353 '<(skia_src_path)/gpu/gl/GrGLStencilAttachment.h',
354 '<(skia_src_path)/gpu/gl/GrGLTestInterface.cpp',
355 '<(skia_src_path)/gpu/gl/GrGLTestInterface.h',
354 '<(skia_src_path)/gpu/gl/GrGLTexture.cpp', 356 '<(skia_src_path)/gpu/gl/GrGLTexture.cpp',
355 '<(skia_src_path)/gpu/gl/GrGLTexture.h', 357 '<(skia_src_path)/gpu/gl/GrGLTexture.h',
356 '<(skia_src_path)/gpu/gl/GrGLTextureRenderTarget.cpp', 358 '<(skia_src_path)/gpu/gl/GrGLTextureRenderTarget.cpp',
357 '<(skia_src_path)/gpu/gl/GrGLTextureRenderTarget.h', 359 '<(skia_src_path)/gpu/gl/GrGLTextureRenderTarget.h',
358 '<(skia_src_path)/gpu/gl/GrGLTransferBuffer.cpp', 360 '<(skia_src_path)/gpu/gl/GrGLTransferBuffer.cpp',
359 '<(skia_src_path)/gpu/gl/GrGLTransferBuffer.h', 361 '<(skia_src_path)/gpu/gl/GrGLTransferBuffer.h',
360 '<(skia_src_path)/gpu/gl/GrGLUtil.cpp', 362 '<(skia_src_path)/gpu/gl/GrGLUtil.cpp',
361 '<(skia_src_path)/gpu/gl/GrGLUtil.h', 363 '<(skia_src_path)/gpu/gl/GrGLUtil.h',
362 '<(skia_src_path)/gpu/gl/GrGLUniformHandler.cpp', 364 '<(skia_src_path)/gpu/gl/GrGLUniformHandler.cpp',
363 '<(skia_src_path)/gpu/gl/GrGLUniformHandler.h', 365 '<(skia_src_path)/gpu/gl/GrGLUniformHandler.h',
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 '<(skia_src_path)/gpu/gl/debug/SkDebugGLContext.cpp', 557 '<(skia_src_path)/gpu/gl/debug/SkDebugGLContext.cpp',
556 '<(skia_src_path)/gpu/gl/debug/SkDebugGLContext.h', 558 '<(skia_src_path)/gpu/gl/debug/SkDebugGLContext.h',
557 ], 559 ],
558 'skgpu_null_gl_sources': [ 560 'skgpu_null_gl_sources': [
559 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp', 561 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp',
560 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp', 562 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp',
561 '<(skia_include_path)/gpu/gl/SkNullGLContext.h', 563 '<(skia_include_path)/gpu/gl/SkNullGLContext.h',
562 ], 564 ],
563 }, 565 },
564 } 566 }
OLDNEW
« no previous file with comments | « no previous file | include/gpu/gl/GrGLFunctions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698