OLD | NEW |
---|---|
1 // Copyright 2010 The Chromium Authors. All rights reserved. | 1 // Copyright 2010 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 #include "cc/output/gl_renderer.h" | 5 #include "cc/output/gl_renderer.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
72 bool NeedsIOSurfaceReadbackWorkaround() { | 72 bool NeedsIOSurfaceReadbackWorkaround() { |
73 #if defined(OS_MACOSX) | 73 #if defined(OS_MACOSX) |
74 // This isn't strictly required in DumpRenderTree-mode when Mesa is used, | 74 // This isn't strictly required in DumpRenderTree-mode when Mesa is used, |
75 // but it doesn't seem to hurt. | 75 // but it doesn't seem to hurt. |
76 return true; | 76 return true; |
77 #else | 77 #else |
78 return false; | 78 return false; |
79 #endif | 79 #endif |
80 } | 80 } |
81 | 81 |
82 // These values are magic numbers that are used in the transformation from YUV t o RGB color values. | |
danakj
2013/04/04 15:01:55
nit: 80 columns
upload should complain about this
vignesh
2013/04/04 22:06:14
Done.
| |
83 // They are taken from the following webpage: http://www.fourcc.org/fccyvrgb.php | |
84 float yuv_to_rgb[9] = { | |
85 1.164f, 1.164f, 1.164f, | |
86 0.f, -.391f, 2.018f, | |
87 1.596f, -.813f, 0.f, | |
88 }; | |
89 | |
90 // These values map to 16, 128, and 128 respectively, and are computed | |
91 // as a fraction over 256 (e.g. 16 / 256 = 0.0625). | |
92 // They are used in the YUV to RGBA conversion formula: | |
93 // Y - 16 : Gives 16 values of head and footroom for overshooting | |
94 // U - 128 : Turns unsigned U into signed U [-128,127] | |
95 // V - 128 : Turns unsigned V into signed V [-128,127] | |
96 float yuv_adjust[3] = { -0.0625f, -0.5f, -0.5f, }; | |
97 | |
82 } // anonymous namespace | 98 } // anonymous namespace |
83 | 99 |
84 scoped_ptr<GLRenderer> GLRenderer::Create(RendererClient* client, | 100 scoped_ptr<GLRenderer> GLRenderer::Create(RendererClient* client, |
85 OutputSurface* output_surface, | 101 OutputSurface* output_surface, |
86 ResourceProvider* resource_provider) { | 102 ResourceProvider* resource_provider) { |
87 scoped_ptr<GLRenderer> renderer( | 103 scoped_ptr<GLRenderer> renderer( |
88 new GLRenderer(client, output_surface, resource_provider)); | 104 new GLRenderer(client, output_surface, resource_provider)); |
89 if (!renderer->Initialize()) | 105 if (!renderer->Initialize()) |
90 return scoped_ptr<GLRenderer>(); | 106 return scoped_ptr<GLRenderer>(); |
91 | 107 |
(...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1192 gfx::PointF(-0.5f * tile_rect.width(), -0.5f * tile_rect.height()), | 1208 gfx::PointF(-0.5f * tile_rect.width(), -0.5f * tile_rect.height()), |
1193 tile_rect.size()); | 1209 tile_rect.size()); |
1194 DrawQuadGeometry( | 1210 DrawQuadGeometry( |
1195 frame, quad->quadTransform(), centered_rect, uniforms.matrix_location); | 1211 frame, quad->quadTransform(), centered_rect, uniforms.matrix_location); |
1196 } | 1212 } |
1197 | 1213 |
1198 void GLRenderer::DrawYUVVideoQuad(const DrawingFrame* frame, | 1214 void GLRenderer::DrawYUVVideoQuad(const DrawingFrame* frame, |
1199 const YUVVideoDrawQuad* quad) { | 1215 const YUVVideoDrawQuad* quad) { |
1200 SetBlendEnabled(quad->ShouldDrawWithBlending()); | 1216 SetBlendEnabled(quad->ShouldDrawWithBlending()); |
1201 | 1217 |
1202 const VideoYUVProgram* program = GetVideoYUVProgram(); | |
1203 DCHECK(program && (program->initialized() || IsContextLost())); | |
1204 | |
1205 const VideoLayerImpl::FramePlane& y_plane = quad->y_plane; | 1218 const VideoLayerImpl::FramePlane& y_plane = quad->y_plane; |
1206 const VideoLayerImpl::FramePlane& u_plane = quad->u_plane; | 1219 const VideoLayerImpl::FramePlane& u_plane = quad->u_plane; |
1207 const VideoLayerImpl::FramePlane& v_plane = quad->v_plane; | 1220 const VideoLayerImpl::FramePlane& v_plane = quad->v_plane; |
1221 const VideoLayerImpl::FramePlane& a_plane = quad->a_plane; | |
1208 | 1222 |
1209 GLC(Context(), Context()->activeTexture(GL_TEXTURE1)); | 1223 GLC(Context(), Context()->activeTexture(GL_TEXTURE1)); |
1210 ResourceProvider::ScopedSamplerGL y_plane_lock( | 1224 ResourceProvider::ScopedSamplerGL y_plane_lock( |
1211 resource_provider_, y_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR); | 1225 resource_provider_, y_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR); |
1212 GLC(Context(), Context()->activeTexture(GL_TEXTURE2)); | 1226 GLC(Context(), Context()->activeTexture(GL_TEXTURE2)); |
1213 ResourceProvider::ScopedSamplerGL u_plane_lock( | 1227 ResourceProvider::ScopedSamplerGL u_plane_lock( |
1214 resource_provider_, u_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR); | 1228 resource_provider_, u_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR); |
1215 GLC(Context(), Context()->activeTexture(GL_TEXTURE3)); | 1229 GLC(Context(), Context()->activeTexture(GL_TEXTURE3)); |
1216 ResourceProvider::ScopedSamplerGL v_plane_lock( | 1230 ResourceProvider::ScopedSamplerGL v_plane_lock( |
1217 resource_provider_, v_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR); | 1231 resource_provider_, v_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR); |
1232 if (a_plane.resource_id) { | |
danakj
2013/04/04 15:01:55
how about "bool use_alpha_plane = a_plane.resource
vignesh
2013/04/04 22:06:14
Done.
| |
1233 ResourceProvider::ScopedSamplerGL a_plane_lock( | |
danakj
2013/04/04 15:01:55
this seems like it works at the moment, but its na
vignesh
2013/04/04 22:06:14
Done.
| |
1234 resource_provider_, a_plane.resource_id, GL_TEXTURE_2D, GL_LINEAR); | |
1235 } | |
1218 | 1236 |
1219 SetUseProgram(program->program()); | 1237 int tex_scale_location; |
1238 int matrix_location; | |
1239 int y_texture_location; | |
1240 int u_texture_location; | |
1241 int v_texture_location; | |
1242 int a_texture_location; | |
1243 int yuv_matrix_location; | |
danakj
2013/04/04 15:01:55
nothing seems to set this.
can you initialize all
vignesh
2013/04/04 22:06:14
Done.
| |
1244 int yuv_adj_location; | |
1245 int alpha_location; | |
1246 if (!a_plane.resource_id) { | |
1247 const VideoYUVProgram* program = GetVideoYUVProgram(); | |
1248 DCHECK(program && (program->initialized() || IsContextLost())); | |
1249 SetUseProgram(program->program()); | |
1250 tex_scale_location = program->vertex_shader().tex_scale_location(); | |
1251 matrix_location = program->vertex_shader().matrix_location(); | |
1252 y_texture_location = program->fragment_shader().y_texture_location(); | |
1253 u_texture_location = program->fragment_shader().u_texture_location(); | |
1254 v_texture_location = program->fragment_shader().v_texture_location(); | |
1255 a_texture_location = program->fragment_shader().yuv_matrix_location(); | |
danakj
2013/04/04 15:01:55
why is this yuv_matrix_location and not just -1?
vignesh
2013/04/04 22:06:14
Done.
| |
1256 yuv_adj_location = program->fragment_shader().yuv_adj_location(); | |
1257 alpha_location = program->fragment_shader().alpha_location(); | |
1258 } else { | |
1259 const VideoYUVAProgram* program = GetVideoYUVAProgram(); | |
1260 DCHECK(program && (program->initialized() || IsContextLost())); | |
1261 SetUseProgram(program->program()); | |
1262 tex_scale_location = program->vertex_shader().tex_scale_location(); | |
1263 matrix_location = program->vertex_shader().matrix_location(); | |
1264 y_texture_location = program->fragment_shader().y_texture_location(); | |
1265 u_texture_location = program->fragment_shader().u_texture_location(); | |
1266 v_texture_location = program->fragment_shader().v_texture_location(); | |
1267 a_texture_location = program->fragment_shader().yuv_matrix_location(); | |
danakj
2013/04/04 15:01:55
why is this yuv_matrix_location and not a_texture_
vignesh
2013/04/04 22:06:14
Done.
| |
1268 yuv_adj_location = program->fragment_shader().yuv_adj_location(); | |
1269 alpha_location = program->fragment_shader().alpha_location(); | |
1270 } | |
1220 | 1271 |
1221 GLC(Context(), | 1272 GLC(Context(), |
1222 Context()->uniform2f(program->vertex_shader().tex_scale_location(), | 1273 Context()->uniform2f(tex_scale_location, |
1223 quad->tex_scale.width(), | 1274 quad->tex_scale.width(), |
1224 quad->tex_scale.height())); | 1275 quad->tex_scale.height())); |
1276 GLC(Context(), Context()->uniform1i(y_texture_location, 1)); | |
1277 GLC(Context(), Context()->uniform1i(u_texture_location, 2)); | |
1278 GLC(Context(), Context()->uniform1i(v_texture_location, 3)); | |
1279 if (a_plane.resource_id) { | |
1280 GLC(Context(), Context()->uniform1i(a_texture_location, 4)); | |
1281 } | |
1282 | |
1225 GLC(Context(), | 1283 GLC(Context(), |
1226 Context()->uniform1i(program->fragment_shader().y_texture_location(), 1)); | 1284 Context()->uniformMatrix3fv(yuv_matrix_location, 1, 0, yuv_to_rgb)); |
1227 GLC(Context(), | 1285 GLC(Context(), Context()->uniform3fv(yuv_adj_location, 1, yuv_adjust)); |
1228 Context()->uniform1i(program->fragment_shader().u_texture_location(), 2)); | |
1229 GLC(Context(), | |
1230 Context()->uniform1i(program->fragment_shader().v_texture_location(), 3)); | |
1231 | 1286 |
1232 // These values are magic numbers that are used in the transformation from YUV | |
1233 // to RGB color values. They are taken from the following webpage: | |
1234 // http://www.fourcc.org/fccyvrgb.php | |
1235 float yuv_to_rgb[9] = { | |
1236 1.164f, 1.164f, 1.164f, | |
1237 0.0f, -.391f, 2.018f, | |
1238 1.596f, -.813f, 0.0f, | |
1239 }; | |
1240 GLC(Context(), | |
1241 Context()->uniformMatrix3fv( | |
1242 program->fragment_shader().yuv_matrix_location(), 1, 0, yuv_to_rgb)); | |
1243 | 1287 |
1244 // These values map to 16, 128, and 128 respectively, and are computed | 1288 SetShaderOpacity(quad->opacity(), alpha_location); |
1245 // as a fraction over 256 (e.g. 16 / 256 = 0.0625). | 1289 DrawQuadGeometry(frame, quad->quadTransform(), quad->rect, matrix_location); |
1246 // They are used in the YUV to RGBA conversion formula: | |
1247 // Y - 16 : Gives 16 values of head and footroom for overshooting | |
1248 // U - 128 : Turns unsigned U into signed U [-128,127] | |
1249 // V - 128 : Turns unsigned V into signed V [-128,127] | |
1250 float yuv_adjust[3] = { -0.0625f, -0.5f, -0.5f, }; | |
1251 GLC(Context(), | |
1252 Context()->uniform3fv( | |
1253 program->fragment_shader().yuv_adj_location(), 1, yuv_adjust)); | |
1254 | |
1255 SetShaderOpacity(quad->opacity(), | |
1256 program->fragment_shader().alpha_location()); | |
1257 DrawQuadGeometry(frame, | |
1258 quad->quadTransform(), | |
1259 quad->rect, | |
1260 program->vertex_shader().matrix_location()); | |
1261 | 1290 |
1262 // Reset active texture back to texture 0. | 1291 // Reset active texture back to texture 0. |
1263 GLC(Context(), Context()->activeTexture(GL_TEXTURE0)); | 1292 GLC(Context(), Context()->activeTexture(GL_TEXTURE0)); |
1264 } | 1293 } |
1265 | 1294 |
1266 void GLRenderer::DrawStreamVideoQuad(const DrawingFrame* frame, | 1295 void GLRenderer::DrawStreamVideoQuad(const DrawingFrame* frame, |
1267 const StreamVideoDrawQuad* quad) { | 1296 const StreamVideoDrawQuad* quad) { |
1268 SetBlendEnabled(quad->ShouldDrawWithBlending()); | 1297 SetBlendEnabled(quad->ShouldDrawWithBlending()); |
1269 | 1298 |
1270 static float gl_matrix[16]; | 1299 static float gl_matrix[16]; |
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2202 const GLRenderer::VideoYUVProgram* GLRenderer::GetVideoYUVProgram() { | 2231 const GLRenderer::VideoYUVProgram* GLRenderer::GetVideoYUVProgram() { |
2203 if (!video_yuv_program_) | 2232 if (!video_yuv_program_) |
2204 video_yuv_program_ = make_scoped_ptr(new VideoYUVProgram(context_)); | 2233 video_yuv_program_ = make_scoped_ptr(new VideoYUVProgram(context_)); |
2205 if (!video_yuv_program_->initialized()) { | 2234 if (!video_yuv_program_->initialized()) { |
2206 TRACE_EVENT0("cc", "GLRenderer::videoYUVProgram::initialize"); | 2235 TRACE_EVENT0("cc", "GLRenderer::videoYUVProgram::initialize"); |
2207 video_yuv_program_->Initialize(context_, is_using_bind_uniform_); | 2236 video_yuv_program_->Initialize(context_, is_using_bind_uniform_); |
2208 } | 2237 } |
2209 return video_yuv_program_.get(); | 2238 return video_yuv_program_.get(); |
2210 } | 2239 } |
2211 | 2240 |
2241 const GLRenderer::VideoYUVAProgram* GLRenderer::GetVideoYUVAProgram() { | |
2242 if (!video_yuva_program_) | |
2243 video_yuva_program_ = make_scoped_ptr(new VideoYUVAProgram(context_)); | |
2244 if (!video_yuva_program_->initialized()) { | |
2245 TRACE_EVENT0("cc", "GLRenderer::videoYUVAProgram::initialize"); | |
2246 video_yuva_program_->Initialize(context_, is_using_bind_uniform_); | |
2247 } | |
2248 return video_yuva_program_.get(); | |
2249 } | |
2250 | |
2212 const GLRenderer::VideoStreamTextureProgram* | 2251 const GLRenderer::VideoStreamTextureProgram* |
2213 GLRenderer::GetVideoStreamTextureProgram() { | 2252 GLRenderer::GetVideoStreamTextureProgram() { |
2214 if (!Capabilities().using_egl_image) | 2253 if (!Capabilities().using_egl_image) |
2215 return NULL; | 2254 return NULL; |
2216 if (!video_stream_texture_program_) | 2255 if (!video_stream_texture_program_) |
2217 video_stream_texture_program_ = | 2256 video_stream_texture_program_ = |
2218 make_scoped_ptr(new VideoStreamTextureProgram(context_)); | 2257 make_scoped_ptr(new VideoStreamTextureProgram(context_)); |
2219 if (!video_stream_texture_program_->initialized()) { | 2258 if (!video_stream_texture_program_->initialized()) { |
2220 TRACE_EVENT0("cc", "GLRenderer::streamTextureProgram::initialize"); | 2259 TRACE_EVENT0("cc", "GLRenderer::streamTextureProgram::initialize"); |
2221 video_stream_texture_program_->Initialize(context_, is_using_bind_uniform_); | 2260 video_stream_texture_program_->Initialize(context_, is_using_bind_uniform_); |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2254 | 2293 |
2255 if (texture_program_) | 2294 if (texture_program_) |
2256 texture_program_->Cleanup(context_); | 2295 texture_program_->Cleanup(context_); |
2257 if (texture_program_flip_) | 2296 if (texture_program_flip_) |
2258 texture_program_flip_->Cleanup(context_); | 2297 texture_program_flip_->Cleanup(context_); |
2259 if (texture_io_surface_program_) | 2298 if (texture_io_surface_program_) |
2260 texture_io_surface_program_->Cleanup(context_); | 2299 texture_io_surface_program_->Cleanup(context_); |
2261 | 2300 |
2262 if (video_yuv_program_) | 2301 if (video_yuv_program_) |
2263 video_yuv_program_->Cleanup(context_); | 2302 video_yuv_program_->Cleanup(context_); |
2303 if (video_yuva_program_) | |
2304 video_yuva_program_->Cleanup(context_); | |
2264 if (video_stream_texture_program_) | 2305 if (video_stream_texture_program_) |
2265 video_stream_texture_program_->Cleanup(context_); | 2306 video_stream_texture_program_->Cleanup(context_); |
2266 | 2307 |
2267 if (debug_border_program_) | 2308 if (debug_border_program_) |
2268 debug_border_program_->Cleanup(context_); | 2309 debug_border_program_->Cleanup(context_); |
2269 if (solid_color_program_) | 2310 if (solid_color_program_) |
2270 solid_color_program_->Cleanup(context_); | 2311 solid_color_program_->Cleanup(context_); |
2271 if (solid_color_program_aa_) | 2312 if (solid_color_program_aa_) |
2272 solid_color_program_aa_->Cleanup(context_); | 2313 solid_color_program_aa_->Cleanup(context_); |
2273 | 2314 |
2274 if (offscreen_framebuffer_id_) | 2315 if (offscreen_framebuffer_id_) |
2275 GLC(context_, context_->deleteFramebuffer(offscreen_framebuffer_id_)); | 2316 GLC(context_, context_->deleteFramebuffer(offscreen_framebuffer_id_)); |
2276 | 2317 |
2277 if (on_demand_tile_raster_resource_id_) | 2318 if (on_demand_tile_raster_resource_id_) |
2278 resource_provider_->DeleteResource(on_demand_tile_raster_resource_id_); | 2319 resource_provider_->DeleteResource(on_demand_tile_raster_resource_id_); |
2279 | 2320 |
2280 ReleaseRenderPassTextures(); | 2321 ReleaseRenderPassTextures(); |
2281 } | 2322 } |
2282 | 2323 |
2283 bool GLRenderer::IsContextLost() { | 2324 bool GLRenderer::IsContextLost() { |
2284 return (context_->getGraphicsResetStatusARB() != GL_NO_ERROR); | 2325 return (context_->getGraphicsResetStatusARB() != GL_NO_ERROR); |
2285 } | 2326 } |
2286 | 2327 |
2287 } // namespace cc | 2328 } // namespace cc |
OLD | NEW |