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

Unified Diff: core/cross/gl/renderer_gl.cc

Issue 155401: Shadow Map Sample (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | samples/MANIFEST » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/cross/gl/renderer_gl.cc
===================================================================
--- core/cross/gl/renderer_gl.cc (revision 20998)
+++ core/cross/gl/renderer_gl.cc (working copy)
@@ -1567,6 +1567,11 @@
MakeCurrentLazy();
Bitmap::Ref bitmap = Bitmap::Ref(new Bitmap(service_locator()));
bitmap->Allocate(Texture::ARGB8, width(), height(), 1, false);
+
+ // Note: glReadPixels caputres the alpha component of the frame buffer as well
+ // as the color components, the graphics pipeline usually ignores the alpha
+ // channel when drawing to the screen, so unless the alpha is 1, the png image
+ // generated might exhibit suprise translucency.
::glReadPixels(0, 0, width(), height(), GL_BGRA, GL_UNSIGNED_BYTE,
bitmap->image_data());
bool result = bitmap->SaveToPNGFile((file_name + ".png").c_str());
« no previous file with comments | « DEPS ('k') | samples/MANIFEST » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698