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

Side by Side Diff: gpu/command_buffer/build_gles2_cmd_buffer.py

Issue 1129943006: Implement StreamTexture::BindTexImage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
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 5
6 """code generator for GLES2 command buffers.""" 6 """code generator for GLES2 command buffers."""
7 7
8 import itertools 8 import itertools
9 import os 9 import os
10 import os.path 10 import os.path
(...skipping 3668 matching lines...) Expand 10 before | Expand all | Expand 10 after
3679 'client_test': False, 3679 'client_test': False,
3680 }, 3680 },
3681 'CreateStreamTextureCHROMIUM': { 3681 'CreateStreamTextureCHROMIUM': {
3682 'type': 'HandWritten', 3682 'type': 'HandWritten',
3683 'impl_func': False, 3683 'impl_func': False,
3684 'gen_cmd': False, 3684 'gen_cmd': False,
3685 'extension': True, 3685 'extension': True,
3686 'chromium': True, 3686 'chromium': True,
3687 'trace_level': 1, 3687 'trace_level': 1,
3688 }, 3688 },
3689 'CreateStreamTextureImageCHROMIUM': {
3690 'type': 'HandWritten',
3691 'impl_func': False,
3692 'gen_cmd': False,
3693 'extension': True,
3694 'chromium': True,
3695 'trace_level': 1,
3696 },
3689 'TexImageIOSurface2DCHROMIUM': { 3697 'TexImageIOSurface2DCHROMIUM': {
3690 'decoder_func': 'DoTexImageIOSurface2DCHROMIUM', 3698 'decoder_func': 'DoTexImageIOSurface2DCHROMIUM',
3691 'unit_test': False, 3699 'unit_test': False,
3692 'extension': True, 3700 'extension': True,
3693 'chromium': True, 3701 'chromium': True,
3694 'trace_level': 1, 3702 'trace_level': 1,
3695 }, 3703 },
3696 'CopyTextureCHROMIUM': { 3704 'CopyTextureCHROMIUM': {
3697 'decoder_func': 'DoCopyTextureCHROMIUM', 3705 'decoder_func': 'DoCopyTextureCHROMIUM',
3698 'unit_test': False, 3706 'unit_test': False,
(...skipping 7582 matching lines...) Expand 10 before | Expand all | Expand 10 after
11281 Format(gen.generated_cpp_filenames) 11289 Format(gen.generated_cpp_filenames)
11282 11290
11283 if gen.errors > 0: 11291 if gen.errors > 0:
11284 print "%d errors" % gen.errors 11292 print "%d errors" % gen.errors
11285 return 1 11293 return 1
11286 return 0 11294 return 0
11287 11295
11288 11296
11289 if __name__ == '__main__': 11297 if __name__ == '__main__':
11290 sys.exit(main(sys.argv[1:])) 11298 sys.exit(main(sys.argv[1:]))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698