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

Side by Side Diff: gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h

Issue 1309743005: command_buffer: Implement EXT_blend_func_extended (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@new-05-path-fragment-input-gen
Patch Set: rebase Created 5 years 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // This file is auto-generated from 5 // This file is auto-generated from
6 // gpu/command_buffer/build_gles2_cmd_buffer.py 6 // gpu/command_buffer/build_gles2_cmd_buffer.py
7 // It's formatted by clang-format using chromium coding style: 7 // It's formatted by clang-format using chromium coding style:
8 // clang-format -i -style=chromium filename 8 // clang-format -i -style=chromium filename
9 // DO NOT EDIT! 9 // DO NOT EDIT!
10 10
(...skipping 2457 matching lines...) Expand 10 before | Expand all | Expand 10 after
2468 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::BlendBarrierKHR"); 2468 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::BlendBarrierKHR");
2469 gl_->BlendBarrierKHR(); 2469 gl_->BlendBarrierKHR();
2470 } 2470 }
2471 2471
2472 void GLES2TraceImplementation::ApplyScreenSpaceAntialiasingCHROMIUM() { 2472 void GLES2TraceImplementation::ApplyScreenSpaceAntialiasingCHROMIUM() {
2473 TRACE_EVENT_BINARY_EFFICIENT0( 2473 TRACE_EVENT_BINARY_EFFICIENT0(
2474 "gpu", "GLES2Trace::ApplyScreenSpaceAntialiasingCHROMIUM"); 2474 "gpu", "GLES2Trace::ApplyScreenSpaceAntialiasingCHROMIUM");
2475 gl_->ApplyScreenSpaceAntialiasingCHROMIUM(); 2475 gl_->ApplyScreenSpaceAntialiasingCHROMIUM();
2476 } 2476 }
2477 2477
2478 void GLES2TraceImplementation::BindFragDataLocationIndexedEXT(
2479 GLuint program,
2480 GLuint colorNumber,
2481 GLuint index,
2482 const char* name) {
2483 TRACE_EVENT_BINARY_EFFICIENT0("gpu",
2484 "GLES2Trace::BindFragDataLocationIndexedEXT");
2485 gl_->BindFragDataLocationIndexedEXT(program, colorNumber, index, name);
2486 }
2487
2488 void GLES2TraceImplementation::BindFragDataLocationEXT(GLuint program,
2489 GLuint colorNumber,
2490 const char* name) {
2491 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::BindFragDataLocationEXT");
2492 gl_->BindFragDataLocationEXT(program, colorNumber, name);
2493 }
2494
2495 GLint GLES2TraceImplementation::GetFragDataIndexEXT(GLuint program,
2496 const char* name) {
2497 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::GetFragDataIndexEXT");
2498 return gl_->GetFragDataIndexEXT(program, name);
2499 }
2500
2478 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_TRACE_IMPLEMENTATION_IMPL_AUTOGEN_H_ 2501 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_TRACE_IMPLEMENTATION_IMPL_AUTOGEN_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/gles2_trace_implementation_autogen.h ('k') | gpu/command_buffer/client/program_info_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698