-
Notifications
You must be signed in to change notification settings - Fork 1
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
5788d00
commit 2d10659
Showing
14 changed files
with
326 additions
and
7 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,11 @@ | ||
#pragma once | ||
#include "TDebug.h" | ||
|
||
TOSHI_NAMESPACE_BEGIN | ||
|
||
class TKERNELINTERFACE_EXPORTS TMatrix44 | ||
{ | ||
|
||
}; | ||
|
||
TOSHI_NAMESPACE_END |
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,11 @@ | ||
#pragma once | ||
#include "Defines.h" | ||
|
||
TOSHI_NAMESPACE_BEGIN | ||
|
||
class TRENDERINTERFACE_EXPORTS TModel | ||
{ | ||
|
||
}; | ||
|
||
TOSHI_NAMESPACE_END |
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,30 @@ | ||
#pragma once | ||
#include "Defines.h" | ||
#include "TKernel/TDebug.h" | ||
|
||
TOSHI_NAMESPACE_BEGIN | ||
|
||
class TRENDERINTERFACE_EXPORTS TRenderCapture | ||
{ | ||
public: | ||
|
||
enum FORMAT | ||
{ | ||
FORMAT_RGBA32, | ||
FORMAT_RGB24, | ||
}; | ||
|
||
TRenderCapture() = default; | ||
|
||
virtual ~TRenderCapture() = default; | ||
virtual TBOOL Create(FORMAT, TINT a_iUnk, TINT a_iUnk2) = 0; | ||
virtual void Destroy() = 0; | ||
virtual TBOOL Request() = 0; | ||
virtual TBOOL Wait() = 0; | ||
virtual TBOOL Poll() = 0; | ||
virtual TPVOID ObtainBuffer() = 0; | ||
virtual void ReleaseBuffer() = 0; | ||
|
||
}; | ||
|
||
TOSHI_NAMESPACE_END |
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
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,12 @@ | ||
#pragma once | ||
#include "TRender/TResource.h" | ||
#include "Defines.h" | ||
|
||
TOSHI_NAMESPACE_BEGIN | ||
|
||
class TRENDERINTERFACE_EXPORTS TSceneObject : public TResource | ||
{ | ||
DECLARE_DYNAMIC(TSceneObject) | ||
}; | ||
|
||
TOSHI_NAMESPACE_END |
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,12 @@ | ||
#pragma once | ||
#include "TSceneObject.h" | ||
#include "Defines.h" | ||
|
||
TOSHI_NAMESPACE_BEGIN | ||
|
||
class TRENDERINTERFACE_EXPORTS TViewport : public TSceneObject | ||
{ | ||
DECLARE_DYNAMIC(TViewport) | ||
}; | ||
|
||
TOSHI_NAMESPACE_END |
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
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 @@ | ||
#include "TMatrix44.h" |
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 @@ | ||
#include "TModel.h" |
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 @@ | ||
#include "TRender/TRenderCapture.h" |
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
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,5 @@ | ||
#include "TSceneObject.h" | ||
|
||
TOSHI_NAMESPACE_USING | ||
|
||
IMPLEMENT_DYNCREATE(TSceneObject, TResource) |
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,5 @@ | ||
#include "TViewport.h" | ||
|
||
TOSHI_NAMESPACE_USING | ||
|
||
IMPLEMENT_DYNCREATE(TViewport, TSceneObject) |
Oops, something went wrong.