HomeSort by relevance Sort by last modified time
    Searched defs:Graphics (Results 1 - 2 of 2) sorted by null

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusgraphics.h 4 * GDI+ Graphics class
33 class Graphics: public GdiplusBase
43 static Graphics* FromHDC(HDC hdc)
45 return new Graphics(hdc);
47 static Graphics* FromHDC(HDC hdc, HANDLE hdevice)
49 return new Graphics(hdc, hdevice);
51 static Graphics* FromHWND(HWND hwnd, BOOL icm = FALSE)
53 return new Graphics(hwnd, icm);
55 static Graphics* FromImage(Image *image)
57 return new Graphics(image)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/
Graphics.java 19 import com.badlogic.gdx.graphics.Cursor;
20 import com.badlogic.gdx.graphics.Cursor.SystemCursor;
21 import com.badlogic.gdx.graphics.GL20;
22 import com.badlogic.gdx.graphics.GL30;
23 import com.badlogic.gdx.graphics.Mesh;
24 import com.badlogic.gdx.graphics.Pixmap;
25 import com.badlogic.gdx.graphics.g2d.Batch;
26 import com.badlogic.gdx.graphics.g2d.BitmapFont;
27 import com.badlogic.gdx.graphics.glutils.FrameBuffer;
28 import com.badlogic.gdx.graphics.glutils.GLVersion
    [all...]

Completed in 194 milliseconds