finished seperating opengl contexts, apply nishi patch
This commit is contained in:
parent
89ff065a71
commit
6f1716151d
12 changed files with 92 additions and 41 deletions
|
|
@ -277,8 +277,13 @@ static void MwLLDestroyImpl(MwLL handle) {
|
|||
free(handle);
|
||||
}
|
||||
|
||||
static void MwLLBeginDrawImpl(MwLL handle) {}
|
||||
static void MwLLEndDrawImpl(MwLL handle) {}
|
||||
static void MwLLBeginDrawImpl(MwLL handle) {
|
||||
(void)handle;
|
||||
}
|
||||
|
||||
static void MwLLEndDrawImpl(MwLL handle) {
|
||||
(void)handle;
|
||||
}
|
||||
|
||||
static void MwLLPolygonImpl(MwLL handle, MwPoint* points, int points_count, MwLLColor color) {
|
||||
POINT* p = malloc(sizeof(*p) * points_count);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue