Use multiline attribute to check for IA2_STATE_MULTILINE.
[chromium-blink-merge.git] / cc / output / direct_renderer.cc
blobaf79412bf036c526dad7a3c02bbfd56bd81acf72
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "cc/output/direct_renderer.h"
7 #include <utility>
8 #include <vector>
10 #include "base/containers/hash_tables.h"
11 #include "base/containers/scoped_ptr_hash_map.h"
12 #include "base/metrics/histogram.h"
13 #include "base/trace_event/trace_event.h"
14 #include "cc/base/math_util.h"
15 #include "cc/output/bsp_tree.h"
16 #include "cc/output/bsp_walk_action.h"
17 #include "cc/output/copy_output_request.h"
18 #include "cc/quads/draw_quad.h"
19 #include "ui/gfx/geometry/rect_conversions.h"
20 #include "ui/gfx/transform.h"
22 static gfx::Transform OrthoProjectionMatrix(float left,
23 float right,
24 float bottom,
25 float top) {
26 // Use the standard formula to map the clipping frustum to the cube from
27 // [-1, -1, -1] to [1, 1, 1].
28 float delta_x = right - left;
29 float delta_y = top - bottom;
30 gfx::Transform proj;
31 if (!delta_x || !delta_y)
32 return proj;
33 proj.matrix().set(0, 0, 2.0f / delta_x);
34 proj.matrix().set(0, 3, -(right + left) / delta_x);
35 proj.matrix().set(1, 1, 2.0f / delta_y);
36 proj.matrix().set(1, 3, -(top + bottom) / delta_y);
38 // Z component of vertices is always set to zero as we don't use the depth
39 // buffer while drawing.
40 proj.matrix().set(2, 2, 0);
42 return proj;
45 static gfx::Transform window_matrix(int x, int y, int width, int height) {
46 gfx::Transform canvas;
48 // Map to window position and scale up to pixel coordinates.
49 canvas.Translate3d(x, y, 0);
50 canvas.Scale3d(width, height, 0);
52 // Map from ([-1, -1] to [1, 1]) -> ([0, 0] to [1, 1])
53 canvas.Translate3d(0.5, 0.5, 0.5);
54 canvas.Scale3d(0.5, 0.5, 0.5);
56 return canvas;
59 namespace cc {
61 DirectRenderer::DrawingFrame::DrawingFrame()
62 : root_render_pass(NULL), current_render_pass(NULL), current_texture(NULL) {
65 DirectRenderer::DrawingFrame::~DrawingFrame() {}
68 // static
69 gfx::RectF DirectRenderer::QuadVertexRect() {
70 return gfx::RectF(-0.5f, -0.5f, 1.f, 1.f);
73 // static
74 void DirectRenderer::QuadRectTransform(gfx::Transform* quad_rect_transform,
75 const gfx::Transform& quad_transform,
76 const gfx::RectF& quad_rect) {
77 *quad_rect_transform = quad_transform;
78 quad_rect_transform->Translate(0.5 * quad_rect.width() + quad_rect.x(),
79 0.5 * quad_rect.height() + quad_rect.y());
80 quad_rect_transform->Scale(quad_rect.width(), quad_rect.height());
83 void DirectRenderer::InitializeViewport(DrawingFrame* frame,
84 const gfx::Rect& draw_rect,
85 const gfx::Rect& viewport_rect,
86 const gfx::Size& surface_size) {
87 DCHECK_GE(viewport_rect.x(), 0);
88 DCHECK_GE(viewport_rect.y(), 0);
89 DCHECK_LE(viewport_rect.right(), surface_size.width());
90 DCHECK_LE(viewport_rect.bottom(), surface_size.height());
91 bool flip_y = FlippedFramebuffer(frame);
92 if (flip_y) {
93 frame->projection_matrix = OrthoProjectionMatrix(draw_rect.x(),
94 draw_rect.right(),
95 draw_rect.bottom(),
96 draw_rect.y());
97 } else {
98 frame->projection_matrix = OrthoProjectionMatrix(draw_rect.x(),
99 draw_rect.right(),
100 draw_rect.y(),
101 draw_rect.bottom());
104 gfx::Rect window_rect = viewport_rect;
105 if (flip_y)
106 window_rect.set_y(surface_size.height() - viewport_rect.bottom());
107 frame->window_matrix = window_matrix(window_rect.x(),
108 window_rect.y(),
109 window_rect.width(),
110 window_rect.height());
111 current_draw_rect_ = draw_rect;
112 current_viewport_rect_ = viewport_rect;
113 current_surface_size_ = surface_size;
114 current_window_space_viewport_ = window_rect;
117 gfx::Rect DirectRenderer::MoveFromDrawToWindowSpace(
118 const DrawingFrame* frame,
119 const gfx::Rect& draw_rect) const {
120 gfx::Rect window_rect = draw_rect;
121 window_rect -= current_draw_rect_.OffsetFromOrigin();
122 window_rect += current_viewport_rect_.OffsetFromOrigin();
123 if (FlippedFramebuffer(frame))
124 window_rect.set_y(current_surface_size_.height() - window_rect.bottom());
125 return window_rect;
128 DirectRenderer::DirectRenderer(RendererClient* client,
129 const RendererSettings* settings,
130 OutputSurface* output_surface,
131 ResourceProvider* resource_provider)
132 : Renderer(client, settings),
133 output_surface_(output_surface),
134 resource_provider_(resource_provider),
135 overlay_processor_(
136 new OverlayProcessor(output_surface, resource_provider)) {
137 overlay_processor_->Initialize();
140 DirectRenderer::~DirectRenderer() {}
142 void DirectRenderer::SetEnlargePassTextureAmountForTesting(
143 const gfx::Vector2d& amount) {
144 enlarge_pass_texture_amount_ = amount;
147 void DirectRenderer::DecideRenderPassAllocationsForFrame(
148 const RenderPassList& render_passes_in_draw_order) {
149 if (!resource_provider_)
150 return;
152 base::hash_map<RenderPassId, gfx::Size> render_passes_in_frame;
153 for (size_t i = 0; i < render_passes_in_draw_order.size(); ++i)
154 render_passes_in_frame.insert(std::pair<RenderPassId, gfx::Size>(
155 render_passes_in_draw_order[i]->id,
156 RenderPassTextureSize(render_passes_in_draw_order[i])));
158 std::vector<RenderPassId> passes_to_delete;
159 base::ScopedPtrHashMap<RenderPassId, ScopedResource>::const_iterator
160 pass_iter;
161 for (pass_iter = render_pass_textures_.begin();
162 pass_iter != render_pass_textures_.end();
163 ++pass_iter) {
164 base::hash_map<RenderPassId, gfx::Size>::const_iterator it =
165 render_passes_in_frame.find(pass_iter->first);
166 if (it == render_passes_in_frame.end()) {
167 passes_to_delete.push_back(pass_iter->first);
168 continue;
171 gfx::Size required_size = it->second;
172 ScopedResource* texture = pass_iter->second;
173 DCHECK(texture);
175 bool size_appropriate = texture->size().width() >= required_size.width() &&
176 texture->size().height() >= required_size.height();
177 if (texture->id() && !size_appropriate)
178 texture->Free();
181 // Delete RenderPass textures from the previous frame that will not be used
182 // again.
183 for (size_t i = 0; i < passes_to_delete.size(); ++i)
184 render_pass_textures_.erase(passes_to_delete[i]);
186 for (size_t i = 0; i < render_passes_in_draw_order.size(); ++i) {
187 if (!render_pass_textures_.contains(render_passes_in_draw_order[i]->id)) {
188 scoped_ptr<ScopedResource> texture =
189 ScopedResource::Create(resource_provider_);
190 render_pass_textures_.set(render_passes_in_draw_order[i]->id,
191 texture.Pass());
196 void DirectRenderer::DrawFrame(RenderPassList* render_passes_in_draw_order,
197 float device_scale_factor,
198 const gfx::Rect& device_viewport_rect,
199 const gfx::Rect& device_clip_rect,
200 bool disable_picture_quad_image_filtering) {
201 TRACE_EVENT0("cc", "DirectRenderer::DrawFrame");
202 UMA_HISTOGRAM_COUNTS("Renderer4.renderPassCount",
203 render_passes_in_draw_order->size());
205 const RenderPass* root_render_pass = render_passes_in_draw_order->back();
206 DCHECK(root_render_pass);
208 DrawingFrame frame;
209 frame.render_passes_in_draw_order = render_passes_in_draw_order;
210 frame.root_render_pass = root_render_pass;
211 frame.root_damage_rect = Capabilities().using_partial_swap
212 ? root_render_pass->damage_rect
213 : root_render_pass->output_rect;
214 frame.root_damage_rect.Intersect(gfx::Rect(device_viewport_rect.size()));
215 frame.device_viewport_rect = device_viewport_rect;
216 frame.device_clip_rect = device_clip_rect;
217 frame.disable_picture_quad_image_filtering =
218 disable_picture_quad_image_filtering;
220 overlay_processor_->ProcessForOverlays(render_passes_in_draw_order,
221 &frame.overlay_list);
223 EnsureBackbuffer();
225 // Only reshape when we know we are going to draw. Otherwise, the reshape
226 // can leave the window at the wrong size if we never draw and the proper
227 // viewport size is never set.
228 output_surface_->Reshape(device_viewport_rect.size(), device_scale_factor);
230 BeginDrawingFrame(&frame);
231 for (size_t i = 0; i < render_passes_in_draw_order->size(); ++i) {
232 RenderPass* pass = render_passes_in_draw_order->at(i);
233 DrawRenderPass(&frame, pass);
235 for (ScopedPtrVector<CopyOutputRequest>::iterator it =
236 pass->copy_requests.begin();
237 it != pass->copy_requests.end();
238 ++it) {
239 if (it != pass->copy_requests.begin()) {
240 // Doing a readback is destructive of our state on Mac, so make sure
241 // we restore the state between readbacks. http://crbug.com/99393.
242 UseRenderPass(&frame, pass);
244 CopyCurrentRenderPassToBitmap(&frame, pass->copy_requests.take(it));
247 FinishDrawingFrame(&frame);
249 render_passes_in_draw_order->clear();
252 gfx::Rect DirectRenderer::ComputeScissorRectForRenderPass(
253 const DrawingFrame* frame) {
254 gfx::Rect render_pass_scissor = frame->current_render_pass->output_rect;
256 if (frame->root_damage_rect == frame->root_render_pass->output_rect ||
257 !frame->current_render_pass->copy_requests.empty())
258 return render_pass_scissor;
260 gfx::Transform inverse_transform(gfx::Transform::kSkipInitialization);
261 if (frame->current_render_pass->transform_to_root_target.GetInverse(
262 &inverse_transform)) {
263 // Only intersect inverse-projected damage if the transform is invertible.
264 gfx::Rect damage_rect_in_render_pass_space =
265 MathUtil::ProjectEnclosingClippedRect(inverse_transform,
266 frame->root_damage_rect);
267 render_pass_scissor.Intersect(damage_rect_in_render_pass_space);
270 return render_pass_scissor;
273 bool DirectRenderer::NeedDeviceClip(const DrawingFrame* frame) const {
274 if (frame->current_render_pass != frame->root_render_pass)
275 return false;
277 return !frame->device_clip_rect.Contains(frame->device_viewport_rect);
280 gfx::Rect DirectRenderer::DeviceClipRectInDrawSpace(
281 const DrawingFrame* frame) const {
282 gfx::Rect device_clip_rect = frame->device_clip_rect;
283 device_clip_rect -= current_viewport_rect_.OffsetFromOrigin();
284 device_clip_rect += current_draw_rect_.OffsetFromOrigin();
285 return device_clip_rect;
288 gfx::Rect DirectRenderer::DeviceViewportRectInDrawSpace(
289 const DrawingFrame* frame) const {
290 gfx::Rect device_viewport_rect = frame->device_viewport_rect;
291 device_viewport_rect -= current_viewport_rect_.OffsetFromOrigin();
292 device_viewport_rect += current_draw_rect_.OffsetFromOrigin();
293 return device_viewport_rect;
296 gfx::Rect DirectRenderer::OutputSurfaceRectInDrawSpace(
297 const DrawingFrame* frame) const {
298 if (frame->current_render_pass == frame->root_render_pass) {
299 gfx::Rect output_surface_rect(output_surface_->SurfaceSize());
300 output_surface_rect -= current_viewport_rect_.OffsetFromOrigin();
301 output_surface_rect += current_draw_rect_.OffsetFromOrigin();
302 return output_surface_rect;
303 } else {
304 return frame->current_render_pass->output_rect;
308 bool DirectRenderer::ShouldSkipQuad(const DrawQuad& quad,
309 const gfx::Rect& render_pass_scissor) {
310 if (render_pass_scissor.IsEmpty())
311 return true;
313 if (quad.isClipped()) {
314 gfx::Rect r = quad.clipRect();
315 r.Intersect(render_pass_scissor);
316 return r.IsEmpty();
319 return false;
322 void DirectRenderer::SetScissorStateForQuad(
323 const DrawingFrame* frame,
324 const DrawQuad& quad,
325 const gfx::Rect& render_pass_scissor,
326 bool use_render_pass_scissor) {
327 if (use_render_pass_scissor) {
328 gfx::Rect quad_scissor_rect = render_pass_scissor;
329 if (quad.isClipped())
330 quad_scissor_rect.Intersect(quad.clipRect());
331 SetScissorTestRectInDrawSpace(frame, quad_scissor_rect);
332 return;
333 } else if (quad.isClipped()) {
334 SetScissorTestRectInDrawSpace(frame, quad.clipRect());
335 return;
338 EnsureScissorTestDisabled();
341 void DirectRenderer::SetScissorTestRectInDrawSpace(
342 const DrawingFrame* frame,
343 const gfx::Rect& draw_space_rect) {
344 gfx::Rect window_space_rect =
345 MoveFromDrawToWindowSpace(frame, draw_space_rect);
346 SetScissorTestRect(window_space_rect);
349 void DirectRenderer::FinishDrawingQuadList() {}
351 void DirectRenderer::DoDrawPolygon(const DrawPolygon& poly,
352 DrawingFrame* frame,
353 const gfx::Rect& render_pass_scissor,
354 bool use_render_pass_scissor) {
355 SetScissorStateForQuad(frame, *poly.original_ref(), render_pass_scissor,
356 use_render_pass_scissor);
358 // If the poly has not been split, then it is just a normal DrawQuad,
359 // and we should save any extra processing that would have to be done.
360 if (!poly.is_split()) {
361 DoDrawQuad(frame, poly.original_ref(), NULL);
362 return;
365 std::vector<gfx::QuadF> quads;
366 poly.ToQuads2D(&quads);
367 for (size_t i = 0; i < quads.size(); ++i) {
368 DoDrawQuad(frame, poly.original_ref(), &quads[i]);
372 void DirectRenderer::FlushPolygons(ScopedPtrDeque<DrawPolygon>* poly_list,
373 DrawingFrame* frame,
374 const gfx::Rect& render_pass_scissor,
375 bool use_render_pass_scissor) {
376 if (poly_list->empty()) {
377 return;
380 BspTree bsp_tree(poly_list);
381 BspWalkActionDrawPolygon action_handler(this, frame, render_pass_scissor,
382 use_render_pass_scissor);
383 bsp_tree.TraverseWithActionHandler(&action_handler);
384 DCHECK(poly_list->empty());
387 void DirectRenderer::DrawRenderPass(DrawingFrame* frame,
388 const RenderPass* render_pass) {
389 TRACE_EVENT0("cc", "DirectRenderer::DrawRenderPass");
390 if (!UseRenderPass(frame, render_pass))
391 return;
393 const gfx::Rect surface_rect_in_draw_space =
394 OutputSurfaceRectInDrawSpace(frame);
395 gfx::Rect render_pass_scissor_in_draw_space = surface_rect_in_draw_space;
397 if (frame->current_render_pass == frame->root_render_pass) {
398 render_pass_scissor_in_draw_space.Intersect(
399 DeviceViewportRectInDrawSpace(frame));
402 if (Capabilities().using_partial_swap) {
403 render_pass_scissor_in_draw_space.Intersect(
404 ComputeScissorRectForRenderPass(frame));
407 if (NeedDeviceClip(frame)) {
408 render_pass_scissor_in_draw_space.Intersect(
409 DeviceClipRectInDrawSpace(frame));
412 bool render_pass_is_clipped =
413 !render_pass_scissor_in_draw_space.Contains(surface_rect_in_draw_space);
414 bool is_root_render_pass =
415 frame->current_render_pass == frame->root_render_pass;
416 bool has_external_stencil_test =
417 is_root_render_pass && output_surface_->HasExternalStencilTest();
418 bool should_clear_surface =
419 !has_external_stencil_test &&
420 (!is_root_render_pass || settings_->should_clear_root_render_pass);
422 // If |has_external_stencil_test| we can't discard or clear. Make sure we
423 // don't need to.
424 DCHECK_IMPLIES(has_external_stencil_test,
425 !frame->current_render_pass->has_transparent_background);
427 SurfaceInitializationMode mode;
428 if (should_clear_surface && render_pass_is_clipped) {
429 mode = SURFACE_INITIALIZATION_MODE_SCISSORED_CLEAR;
430 } else if (should_clear_surface) {
431 mode = SURFACE_INITIALIZATION_MODE_FULL_SURFACE_CLEAR;
432 } else {
433 mode = SURFACE_INITIALIZATION_MODE_PRESERVE;
436 PrepareSurfaceForPass(
437 frame, mode,
438 MoveFromDrawToWindowSpace(frame, render_pass_scissor_in_draw_space));
440 const QuadList& quad_list = render_pass->quad_list;
441 ScopedPtrDeque<DrawPolygon> poly_list;
443 int next_polygon_id = 0;
444 int last_sorting_context_id = 0;
445 for (auto it = quad_list.BackToFrontBegin(); it != quad_list.BackToFrontEnd();
446 ++it) {
447 const DrawQuad& quad = **it;
448 gfx::QuadF send_quad(quad.visible_rect);
450 if (render_pass_is_clipped &&
451 ShouldSkipQuad(quad, render_pass_scissor_in_draw_space)) {
452 continue;
455 if (last_sorting_context_id != quad.shared_quad_state->sorting_context_id) {
456 last_sorting_context_id = quad.shared_quad_state->sorting_context_id;
457 FlushPolygons(&poly_list, frame, render_pass_scissor_in_draw_space,
458 render_pass_is_clipped);
461 // This layer is in a 3D sorting context so we add it to the list of
462 // polygons to go into the BSP tree.
463 if (quad.shared_quad_state->sorting_context_id != 0) {
464 scoped_ptr<DrawPolygon> new_polygon(new DrawPolygon(
465 *it, quad.visible_rect, quad.quadTransform(), next_polygon_id++));
466 if (new_polygon->points().size() > 2u) {
467 poly_list.push_back(new_polygon.Pass());
469 continue;
472 // We are not in a 3d sorting context, so we should draw the quad normally.
473 SetScissorStateForQuad(frame, quad, render_pass_scissor_in_draw_space,
474 render_pass_is_clipped);
476 DoDrawQuad(frame, &quad, nullptr);
478 FlushPolygons(&poly_list, frame, render_pass_scissor_in_draw_space,
479 render_pass_is_clipped);
480 FinishDrawingQuadList();
483 bool DirectRenderer::UseRenderPass(DrawingFrame* frame,
484 const RenderPass* render_pass) {
485 frame->current_render_pass = render_pass;
486 frame->current_texture = NULL;
488 if (render_pass == frame->root_render_pass) {
489 BindFramebufferToOutputSurface(frame);
490 InitializeViewport(frame,
491 render_pass->output_rect,
492 frame->device_viewport_rect,
493 output_surface_->SurfaceSize());
494 return true;
497 ScopedResource* texture = render_pass_textures_.get(render_pass->id);
498 DCHECK(texture);
500 gfx::Size size = RenderPassTextureSize(render_pass);
501 size.Enlarge(enlarge_pass_texture_amount_.x(),
502 enlarge_pass_texture_amount_.y());
503 if (!texture->id())
504 texture->Allocate(
505 size, ResourceProvider::TEXTURE_HINT_IMMUTABLE_FRAMEBUFFER, RGBA_8888);
506 DCHECK(texture->id());
508 if (BindFramebufferToTexture(frame, texture, render_pass->output_rect)) {
509 InitializeViewport(frame, render_pass->output_rect,
510 gfx::Rect(render_pass->output_rect.size()),
511 render_pass->output_rect.size());
512 return true;
515 return false;
518 bool DirectRenderer::HasAllocatedResourcesForTesting(RenderPassId id) const {
519 ScopedResource* texture = render_pass_textures_.get(id);
520 return texture && texture->id();
523 // static
524 gfx::Size DirectRenderer::RenderPassTextureSize(const RenderPass* render_pass) {
525 return render_pass->output_rect.size();
528 } // namespace cc