Skip to content

Commit

Permalink
メソッド名を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
ebifrier committed Apr 17, 2024
1 parent 6e83d9e commit d153621
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Ragnarok.OpenGL/Initializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,13 @@ namespace Ragnarok.OpenGL
public static class Initializer
{
/// <summary>
/// 最適なGPUを選択します。ウィンドウの作成前に呼んで下さい。
/// 優先的にNVIDIA GPUを使うようにします。ウィンドウの作成前に呼んで下さい。
/// </summary>
public static void InitializeGraphics()
/// <remarks>
/// ノートパソコンなどでは内臓GPUは優先的に使われることがあるため
/// 外付けのNVIDIA GPUを優先的に使うようにします。
/// </remarks>
public static void PrioritizeNvidiaGPU()
{
#if !MONO
try
Expand Down

0 comments on commit d153621

Please sign in to comment.