Skip to content

Commit

Permalink
add command buffer stub object
Browse files Browse the repository at this point in the history
  • Loading branch information
devshgraphicsprogramming committed Jul 30, 2018
1 parent 8bf4567 commit d96df05
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions include/ICommandBuffer.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
// Copyright (C) 2002-2012 Nikolaus Gebhardt
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h

#ifndef __I_VULKAN_PREBAKED_H_INCLUDED__
#define __I_VULKAN_PREBAKED_H_INCLUDED__

#include "stdint.h"
#include "IVulkanPrebaked.h"

namespace irr
{
namespace video
{

//!
class ICommandBuffer : public virtual IReferenceCounted
{
public:
protected:
ICommandBuffer()
{
}

//virtual void computeDirtyFlag() = 0;
virtual void rebakeSelfAndDeps() = 0;
};


} // end namespace video
} // end namespace irr

#endif







0 comments on commit d96df05

Please sign in to comment.