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

Side by Side Diff: command_buffer/service/cross/gl/gapi_gl.cc

Issue 234002: More work in Command Buffers... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 2 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright 2009, Google Inc. 2 * Copyright 2009, Google Inc.
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 CHECK_GL_ERROR(); 396 CHECK_GL_ERROR();
397 } 397 }
398 398
399 void GAPIGL::Clear(unsigned int buffers, 399 void GAPIGL::Clear(unsigned int buffers,
400 const RGBA &color, 400 const RGBA &color,
401 float depth, 401 float depth,
402 unsigned int stencil) { 402 unsigned int stencil) {
403 glClearColor(color.red, color.green, color.blue, color.alpha); 403 glClearColor(color.red, color.green, color.blue, color.alpha);
404 glClearDepth(depth); 404 glClearDepth(depth);
405 glClearStencil(stencil); 405 glClearStencil(stencil);
406 glClear((buffers & COLOR ? GL_COLOR_BUFFER_BIT : 0) | 406 glClear((buffers & kColor ? GL_COLOR_BUFFER_BIT : 0) |
407 (buffers & DEPTH ? GL_DEPTH_BUFFER_BIT : 0) | 407 (buffers & kDepth ? GL_DEPTH_BUFFER_BIT : 0) |
408 (buffers & STENCIL ? GL_STENCIL_BUFFER_BIT : 0)); 408 (buffers & kStencil ? GL_STENCIL_BUFFER_BIT : 0));
409 CHECK_GL_ERROR(); 409 CHECK_GL_ERROR();
410 } 410 }
411 411
412 } // namespace command_buffer 412 } // namespace command_buffer
413 } // namespace o3d 413 } // namespace o3d
OLDNEW
« no previous file with comments | « command_buffer/service/cross/gl/gapi_gl.h ('k') | command_buffer/service/cross/gl/geometry_gl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698