Flutter Impeller
impeller::scene::SkinnedVertexBufferGeometry Class Referencefinal

#include <geometry.h>

Inheritance diagram for impeller::scene::SkinnedVertexBufferGeometry:
impeller::scene::Geometry

Public Member Functions

 SkinnedVertexBufferGeometry ()
 
 ~SkinnedVertexBufferGeometry () override
 
void SetVertexBuffer (VertexBuffer vertex_buffer)
 
GeometryType GetGeometryType () const override
 
VertexBuffer GetVertexBuffer (Allocator &allocator) const override
 
void BindToCommand (const SceneContext &scene_context, HostBuffer &buffer, const Matrix &transform, Command &command) const override
 
void SetJointsTexture (const std::shared_ptr< Texture > &texture) override
 
- Public Member Functions inherited from impeller::scene::Geometry
virtual ~Geometry ()
 

Additional Inherited Members

- Static Public Member Functions inherited from impeller::scene::Geometry
static std::shared_ptr< CuboidGeometryMakeCuboid (Vector3 size)
 
static std::shared_ptr< GeometryMakeVertexBuffer (VertexBuffer vertex_buffer, bool is_skinned)
 
static std::shared_ptr< GeometryMakeFromFlatbuffer (const fb::MeshPrimitive &mesh, Allocator &allocator)
 

Detailed Description

Definition at line 104 of file geometry.h.

Constructor & Destructor Documentation

◆ SkinnedVertexBufferGeometry()

impeller::scene::SkinnedVertexBufferGeometry::SkinnedVertexBufferGeometry ( )
default

◆ ~SkinnedVertexBufferGeometry()

impeller::scene::SkinnedVertexBufferGeometry::~SkinnedVertexBufferGeometry ( )
overridedefault

Member Function Documentation

◆ BindToCommand()

void impeller::scene::SkinnedVertexBufferGeometry::BindToCommand ( const SceneContext scene_context,
HostBuffer buffer,
const Matrix transform,
Command command 
) const
overridevirtual

Implements impeller::scene::Geometry.

Definition at line 238 of file geometry.cc.

242  {
243  command.BindVertices(
244  GetVertexBuffer(*scene_context.GetContext()->GetResourceAllocator()));
245 
246  SamplerDescriptor sampler_desc;
247  sampler_desc.min_filter = MinMagFilter::kNearest;
248  sampler_desc.mag_filter = MinMagFilter::kNearest;
249  sampler_desc.mip_filter = MipFilter::kNearest;
250  sampler_desc.width_address_mode = SamplerAddressMode::kRepeat;
251  sampler_desc.label = "NN Repeat";
252 
253  SkinnedVertexShader::BindJointsTexture(
254  command,
255  joints_texture_ ? joints_texture_ : scene_context.GetPlaceholderTexture(),
256  scene_context.GetContext()->GetSamplerLibrary()->GetSampler(
257  sampler_desc));
258 
259  SkinnedVertexShader::FrameInfo info;
260  info.mvp = transform;
261  info.enable_skinning = joints_texture_ ? 1 : 0;
262  info.joint_texture_size =
263  joints_texture_ ? joints_texture_->GetSize().width : 1;
264  SkinnedVertexShader::BindFrameInfo(command, buffer.EmplaceUniform(info));
265 }

References impeller::Command::BindVertices(), impeller::HostBuffer::EmplaceUniform(), impeller::scene::SceneContext::GetContext(), impeller::scene::SceneContext::GetPlaceholderTexture(), GetVertexBuffer(), impeller::kNearest, impeller::kRepeat, impeller::SamplerDescriptor::label, impeller::SamplerDescriptor::mag_filter, impeller::SamplerDescriptor::min_filter, impeller::SamplerDescriptor::mip_filter, and impeller::SamplerDescriptor::width_address_mode.

◆ GetGeometryType()

GeometryType impeller::scene::SkinnedVertexBufferGeometry::GetGeometryType ( ) const
overridevirtual

Implements impeller::scene::Geometry.

Definition at line 227 of file geometry.cc.

227  {
228  return GeometryType::kSkinned;
229 }

References impeller::scene::kSkinned.

◆ GetVertexBuffer()

VertexBuffer impeller::scene::SkinnedVertexBufferGeometry::GetVertexBuffer ( Allocator allocator) const
overridevirtual

Implements impeller::scene::Geometry.

Definition at line 232 of file geometry.cc.

233  {
234  return vertex_buffer_;
235 }

Referenced by BindToCommand().

◆ SetJointsTexture()

void impeller::scene::SkinnedVertexBufferGeometry::SetJointsTexture ( const std::shared_ptr< Texture > &  texture)
overridevirtual

Reimplemented from impeller::scene::Geometry.

Definition at line 268 of file geometry.cc.

269  {
270  joints_texture_ = texture;
271 }

◆ SetVertexBuffer()

void impeller::scene::SkinnedVertexBufferGeometry::SetVertexBuffer ( VertexBuffer  vertex_buffer)

Definition at line 222 of file geometry.cc.

222  {
223  vertex_buffer_ = std::move(vertex_buffer);
224 }

The documentation for this class was generated from the following files:
impeller::MinMagFilter::kNearest
@ kNearest
Select nearest to the sample point. Most widely supported.
impeller::MipFilter::kNearest
@ kNearest
Sample from the nearest mip level.
impeller::scene::SkinnedVertexBufferGeometry::GetVertexBuffer
VertexBuffer GetVertexBuffer(Allocator &allocator) const override
Definition: geometry.cc:232
impeller::scene::GeometryType::kSkinned
@ kSkinned
impeller::SamplerAddressMode::kRepeat
@ kRepeat