Logo
GfxDriver.h
1#pragma once
2#include "Types.h"
3
4namespace SharpKmyGfx
5{
6 public ref class GfxDriver
7 {
8 public:
9 /*
10 * グラフィックドライバの名前設定(ドライバ初期化以降は無効)
11 * name "ogl33" / "ogl44"
12 * アプリ起動時に1度だけ呼び出せる。
13 */
14 static void initialize(String^ name);
15
16 static bool isEnableCopyTextureToTexture();
17 };
18}
Definition: GfxDriver.h:7
static void initialize(String^ name)
Definition: GfxDriver.cpp:7
static bool isEnableCopyTextureToTexture()
Definition: GfxDriver.cpp:17
Definition: Billboard.cpp:4