blob: 4764560f24c196315b6fb89268326acf269a39bc [file] [log] [blame]
// Copyright 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_QUADS_RENDER_PASS_DRAW_QUAD_H_
#define CC_QUADS_RENDER_PASS_DRAW_QUAD_H_
#include <stddef.h>
#include <memory>
#include "cc/base/filter_operations.h"
#include "cc/cc_export.h"
#include "cc/quads/draw_quad.h"
#include "ui/gfx/geometry/point_f.h"
#include "ui/gfx/geometry/rect_f.h"
namespace cc {
class CC_EXPORT RenderPassDrawQuad : public DrawQuad {
public:
static const size_t kMaskResourceIdIndex = 0;
RenderPassDrawQuad();
RenderPassDrawQuad(const RenderPassDrawQuad& other);
~RenderPassDrawQuad() override;
void SetNew(const SharedQuadState* shared_quad_state,
const gfx::Rect& rect,
const gfx::Rect& visible_rect,
int render_pass_id,
ResourceId mask_resource_id,
const gfx::RectF& mask_uv_rect,
const gfx::Size& mask_texture_size,
const gfx::Vector2dF& filters_scale,
const gfx::PointF& filters_origin,
const gfx::RectF& tex_coord_rect);
void SetAll(const SharedQuadState* shared_quad_state,
const gfx::Rect& rect,
const gfx::Rect& opaque_rect,
const gfx::Rect& visible_rect,
bool needs_blending,
int render_pass_id,
ResourceId mask_resource_id,
const gfx::RectF& mask_uv_rect,
const gfx::Size& mask_texture_size,
const gfx::Vector2dF& filters_scale,
const gfx::PointF& filters_origin,
const gfx::RectF& tex_coord_rect);
int render_pass_id;
gfx::RectF mask_uv_rect;
gfx::Size mask_texture_size;
// The scale from layer space of the root layer of the render pass to
// the render pass physical pixels. This scale is applied to the filter
// parameters for pixel-moving filters. This scale should include
// content-to-target-space scale, and device pixel ratio.
gfx::Vector2dF filters_scale;
// The origin for post-processing filters which will be used to offset
// crop rects, lights, etc.
gfx::PointF filters_origin;
gfx::RectF tex_coord_rect;
ResourceId mask_resource_id() const {
return resources.ids[kMaskResourceIdIndex];
}
static const RenderPassDrawQuad* MaterialCast(const DrawQuad*);
private:
void ExtendValue(base::trace_event::TracedValue* value) const override;
};
} // namespace cc
#endif // CC_QUADS_RENDER_PASS_DRAW_QUAD_H_