fill in the rest of the GL functions. finally

This commit is contained in:
jp9000
2013-10-12 20:18:05 -07:00
parent e591256922
commit 9577ddcf9b
12 changed files with 329 additions and 30 deletions

View File

@@ -1035,11 +1035,11 @@ void gs_enable_stencilwrite(bool enable)
graphics->exports.device_enable_stencilwrite(graphics->device, enable);
}
void gs_enable_color(bool red, bool blue, bool green, bool alpha)
void gs_enable_color(bool red, bool green, bool blue, bool alpha)
{
graphics_t graphics = thread_graphics;
graphics->exports.device_enable_color(graphics->device, red, blue,
green, alpha);
graphics->exports.device_enable_color(graphics->device, red, green,
blue, alpha);
}
void gs_blendfunction(enum gs_blend_type src, enum gs_blend_type dest)