-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8bf4567
commit d96df05
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
||
|
||
|
||
|
||
|
||
|