-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ fix multithread crash in picking + fix crash when UIText containing '%' is edited
- Loading branch information
Showing
55 changed files
with
473 additions
and
110 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
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
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
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
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,29 @@ | ||
//#ifndef _EDITOR_PASS__HLSLI_ | ||
//#define _EDITOR_PASS__HLSLI_ | ||
// | ||
//#include "types.hlsli" | ||
//#include "packing.hlsli" | ||
//#include "displaymodes.hlsli" | ||
// | ||
//struct EditorPassConstants | ||
//{ | ||
// #ifdef __cplusplus | ||
// EditorPassConstants() | ||
// { | ||
// m_data = 0; | ||
// setOutlineMask(BINDLESS_TEXTURE_INVALID); | ||
// } | ||
// #else | ||
// void Load(ByteAddressBuffer _buffer, uint _offset = 0) | ||
// { | ||
// m_data = _buffer.Load<EditorPassConstants>(_offset).m_data; | ||
// } | ||
// #endif | ||
// | ||
// uint m_data; | ||
// | ||
// void setOutlineMask (uint _outlineMask) { m_data = packUint16low(m_data, _outlineMask); } | ||
// uint getOutlineMask () { return unpackUint16low(m_data); } | ||
//}; | ||
// | ||
//#endif // _EDITOR_PASS__HLSLI_ |
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,10 @@ | ||
#ifndef _OUTLINEMASK__HLSLI_ | ||
#define _OUTLINEMASK__HLSLI_ | ||
|
||
#include "types.hlsli" | ||
|
||
vg_enum_class(OutlineMaskFlags, uint, | ||
DepthFail = 0x8000 | ||
); | ||
|
||
#endif // _OUTLINEMASK__HLSLI_ |
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
Oops, something went wrong.