Skip to content

Instantly share code, notes, and snippets.

@kazaiso
Last active March 17, 2017 02:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kazaiso/41816c25b20ad437823ac546d869b163 to your computer and use it in GitHub Desktop.
Save kazaiso/41816c25b20ad437823ac546d869b163 to your computer and use it in GitHub Desktop.
【Delphi / C++Builder 10.2 Tokyo 新機能・改善点】ライブラリ周りの機能など ref: http://qiita.com/kazaiso/items/f100d480eaf2fd997668
for I := 0 to 10000 do
begin
// thread work
Canvas.BeginScene;
try
// drawing code
finally
Canvas.EndScene;
end;
end;
Canvas.BeginScene;
try
for I := 0 to 10000 do
begin
// thread code
// drawing code
end;
finally
Canvas.EndScene;
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment