mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-08 13:40:40 +01:00
Merge pull request #39 from shinyquagsire23/gx2-pruning
Remove GX2 functions which don't exist in target system version
This commit is contained in:
commit
ee47d6da6b
@ -22,25 +22,12 @@ GX2ClearColor(GX2ColorBuffer *colorBuffer,
|
|||||||
float blue,
|
float blue,
|
||||||
float alpha);
|
float alpha);
|
||||||
|
|
||||||
void
|
|
||||||
GX2ClearDepthStencil(GX2DepthBuffer *depthBuffer,
|
|
||||||
GX2ClearFlags clearMode);
|
|
||||||
|
|
||||||
void
|
void
|
||||||
GX2ClearDepthStencilEx(GX2DepthBuffer *depthBuffer,
|
GX2ClearDepthStencilEx(GX2DepthBuffer *depthBuffer,
|
||||||
float depth,
|
float depth,
|
||||||
uint8_t stencil,
|
uint8_t stencil,
|
||||||
GX2ClearFlags clearMode);
|
GX2ClearFlags clearMode);
|
||||||
|
|
||||||
void
|
|
||||||
GX2ClearBuffers(GX2ColorBuffer *colorBuffer,
|
|
||||||
GX2DepthBuffer *depthBuffer,
|
|
||||||
float red,
|
|
||||||
float green,
|
|
||||||
float blue,
|
|
||||||
float alpha,
|
|
||||||
GX2ClearFlags clearMode);
|
|
||||||
|
|
||||||
void
|
void
|
||||||
GX2ClearBuffersEx(GX2ColorBuffer *colorBuffer,
|
GX2ClearBuffersEx(GX2ColorBuffer *colorBuffer,
|
||||||
GX2DepthBuffer *depthBuffer,
|
GX2DepthBuffer *depthBuffer,
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
// gx2/clear.h
|
// gx2/clear.h
|
||||||
EXPORT(GX2ClearColor);
|
EXPORT(GX2ClearColor);
|
||||||
EXPORT(GX2ClearDepthStencil);
|
|
||||||
EXPORT(GX2ClearDepthStencilEx);
|
EXPORT(GX2ClearDepthStencilEx);
|
||||||
EXPORT(GX2ClearBuffers);
|
|
||||||
EXPORT(GX2ClearBuffersEx);
|
EXPORT(GX2ClearBuffersEx);
|
||||||
EXPORT(GX2SetClearDepth);
|
EXPORT(GX2SetClearDepth);
|
||||||
EXPORT(GX2SetClearStencil);
|
EXPORT(GX2SetClearStencil);
|
||||||
EXPORT(GX2SetClearDepthStencil);
|
EXPORT(GX2SetClearDepthStencil);
|
||||||
|
|
||||||
// gx2/context.h
|
// gx2/context.h
|
||||||
EXPORT(GX2SetupContextState);
|
|
||||||
EXPORT(GX2SetupContextStateEx);
|
EXPORT(GX2SetupContextStateEx);
|
||||||
EXPORT(GX2GetContextStateDisplayList);
|
EXPORT(GX2GetContextStateDisplayList);
|
||||||
EXPORT(GX2SetContextState);
|
EXPORT(GX2SetContextState);
|
||||||
@ -29,7 +26,6 @@ EXPORT(GX2GetSystemDRCMode);
|
|||||||
|
|
||||||
// gx2/displaylist.h
|
// gx2/displaylist.h
|
||||||
EXPORT(GX2BeginDisplayListEx);
|
EXPORT(GX2BeginDisplayListEx);
|
||||||
EXPORT(GX2BeginDisplayList);
|
|
||||||
EXPORT(GX2EndDisplayList);
|
EXPORT(GX2EndDisplayList);
|
||||||
EXPORT(GX2DirectCallDisplayList);
|
EXPORT(GX2DirectCallDisplayList);
|
||||||
EXPORT(GX2CallDisplayList);
|
EXPORT(GX2CallDisplayList);
|
||||||
|
Loading…
Reference in New Issue
Block a user