Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
GrVkRenderPass::LoadStoreOps Struct Reference

#include <GrVkRenderPass.h>

Public Member Functions

 LoadStoreOps (VkAttachmentLoadOp loadOp, VkAttachmentStoreOp storeOp)
 
bool operator== (const LoadStoreOps &right) const
 
bool operator!= (const LoadStoreOps &right) const
 

Public Attributes

VkAttachmentLoadOp fLoadOp
 
VkAttachmentStoreOp fStoreOp
 

Detailed Description

Definition at line 26 of file GrVkRenderPass.h.

Constructor & Destructor Documentation

◆ LoadStoreOps()

GrVkRenderPass::LoadStoreOps::LoadStoreOps ( VkAttachmentLoadOp  loadOp,
VkAttachmentStoreOp  storeOp 
)
inline

Definition at line 30 of file GrVkRenderPass.h.

31 : fLoadOp(loadOp)
32 , fStoreOp(storeOp) {}
VkAttachmentStoreOp fStoreOp

Member Function Documentation

◆ operator!=()

bool GrVkRenderPass::LoadStoreOps::operator!= ( const LoadStoreOps right) const
inline

Definition at line 38 of file GrVkRenderPass.h.

38 {
39 return !(*this == right);
40 }
static bool right(const SkPoint &p0, const SkPoint &p1)

◆ operator==()

bool GrVkRenderPass::LoadStoreOps::operator== ( const LoadStoreOps right) const
inline

Definition at line 34 of file GrVkRenderPass.h.

34 {
35 return fLoadOp == right.fLoadOp && fStoreOp == right.fStoreOp;
36 }

Member Data Documentation

◆ fLoadOp

VkAttachmentLoadOp GrVkRenderPass::LoadStoreOps::fLoadOp

Definition at line 27 of file GrVkRenderPass.h.

◆ fStoreOp

VkAttachmentStoreOp GrVkRenderPass::LoadStoreOps::fStoreOp

Definition at line 28 of file GrVkRenderPass.h.


The documentation for this struct was generated from the following file: