Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_IMPL_H_ | 5 #ifndef WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_IMPL_H_ |
| 6 #define WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_IMPL_H_ | 6 #define WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_IMPL_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 471 WGC3Denum target, WGC3Denum pname, WGC3Dint* params); | 471 WGC3Denum target, WGC3Denum pname, WGC3Dint* params); |
| 472 virtual void getQueryObjectuivEXT( | 472 virtual void getQueryObjectuivEXT( |
| 473 WebGLId query, WGC3Denum pname, WGC3Duint* params); | 473 WebGLId query, WGC3Denum pname, WGC3Duint* params); |
| 474 | 474 |
| 475 virtual void copyTextureCHROMIUM(WGC3Denum target, WGC3Duint source_id, | 475 virtual void copyTextureCHROMIUM(WGC3Denum target, WGC3Duint source_id, |
| 476 WGC3Duint dest_id, WGC3Dint level, | 476 WGC3Duint dest_id, WGC3Dint level, |
| 477 WGC3Denum internal_format); | 477 WGC3Denum internal_format); |
| 478 virtual void bindUniformLocationCHROMIUM(WebGLId program, WGC3Dint location, | 478 virtual void bindUniformLocationCHROMIUM(WebGLId program, WGC3Dint location, |
| 479 const WGC3Dchar* uniform); | 479 const WGC3Dchar* uniform); |
| 480 | 480 |
| 481 // CHROMIUM_shallow_flush only applies to contexts that use the command_buffer | |
|
nduca
2012/07/18 06:13:06
// Comments are complete sentences that end with p
brianderson
2012/07/19 03:29:44
Fixed for next patch set.
| |
| 482 virtual void shallowFlushCHROMIUM() { } | |
| 483 | |
| 481 protected: | 484 protected: |
| 482 virtual GrGLInterface* onCreateGrGLInterface(); | 485 virtual GrGLInterface* onCreateGrGLInterface(); |
| 483 | 486 |
| 484 private: | 487 private: |
| 485 bool Initialize(Attributes attributes); | 488 bool Initialize(Attributes attributes); |
| 486 | 489 |
| 487 // ANGLE related. | 490 // ANGLE related. |
| 488 struct ShaderSourceEntry; | 491 struct ShaderSourceEntry; |
| 489 | 492 |
| 490 typedef base::hash_map<WebGLId, ShaderSourceEntry*> ShaderSourceMap; | 493 typedef base::hash_map<WebGLId, ShaderSourceEntry*> ShaderSourceMap; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 549 ShaderSourceMap shader_source_map_; | 552 ShaderSourceMap shader_source_map_; |
| 550 | 553 |
| 551 ShHandle fragment_compiler_; | 554 ShHandle fragment_compiler_; |
| 552 ShHandle vertex_compiler_; | 555 ShHandle vertex_compiler_; |
| 553 }; | 556 }; |
| 554 | 557 |
| 555 } // namespace gpu | 558 } // namespace gpu |
| 556 } // namespace webkit | 559 } // namespace webkit |
| 557 | 560 |
| 558 #endif // WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_IMPL_H_ | 561 #endif // WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_IMPL_H_ |
| OLD | NEW |