-
Notifications
You must be signed in to change notification settings - Fork 4
/
xxGraphicWGL.h
21 lines (19 loc) · 971 Bytes
/
xxGraphicWGL.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//==============================================================================
// xxGraphic : OpenGL WGL Header
//
// Copyright (c) 2019-2024 TAiGA
// https://github.com/metarutaiga/xxGraphic
//==============================================================================
#pragma once
#include "xxSystem.h"
//==============================================================================
// Initialize
//==============================================================================
uint64_t xxGraphicCreateWGL(int version);
void xxGraphicDestroyWGL(uint64_t context);
//==============================================================================
// Extension
//==============================================================================
void const* xxGetDeviceFromDirect3DTexture(void const* texture);
void const* xxCreateImageFromDirect3DTexture(void const* device, void const* texture, int id);
void xxDestroyImage(void const* device, void const* image);