Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
VIZ.Framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘龙飞
VIZ.Framework
Commits
a51c3e62
Commit
a51c3e62
authored
Jul 25, 2022
by
liulongfei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复同步帧问题
parent
5b9bd409
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
VIZ.Framework.Connection/Provider/FixedBuffer/ConnFixedBufferPackageProvider.cs
+2
-1
VIZ.Framework.Core/Core/WPF/ModelBase.cs
+2
-2
No files found.
VIZ.Framework.Connection/Provider/FixedBuffer/ConnFixedBufferPackageProvider.cs
View file @
a51c3e62
...
...
@@ -32,7 +32,7 @@ namespace VIZ.Framework.Connection
if
(
syncHeader
!=
null
)
{
this
.
SyncHeader
.
AddRange
(
S
yncHeader
);
this
.
SyncHeader
.
AddRange
(
s
yncHeader
);
}
}
...
...
@@ -84,6 +84,7 @@ namespace VIZ.Framework.Connection
{
byte
[]
buffer_cache_new
=
new
byte
[
this
.
FixedBufferSize
];
Array
.
Copy
(
this
.
buffer_cache
,
sync_index
,
buffer_cache_new
,
0
,
this
.
FixedBufferSize
-
sync_index
);
this
.
buffer_cache
=
buffer_cache_new
;
this
.
buffer_index
-=
sync_index
;
continue
;
...
...
VIZ.Framework.Core/Core/WPF/ModelBase.cs
View file @
a51c3e62
...
...
@@ -45,7 +45,7 @@ namespace VIZ.Framework.Core
return
;
}
WPFHelper
.
Begin
Invoke
(()
=>
WPFHelper
.
Invoke
(()
=>
{
this
.
PropertyChanging
?.
Invoke
(
this
,
new
PropertyChangingEventArgs
(
propertyName
));
});
...
...
@@ -73,7 +73,7 @@ namespace VIZ.Framework.Core
return
;
}
WPFHelper
.
Begin
Invoke
(()
=>
WPFHelper
.
Invoke
(()
=>
{
this
.
PropertyChanged
?.
Invoke
(
this
,
new
PropertyChangedEventArgs
(
propertyName
));
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment