Added a rectangle structure for holding viewport/scissor information.

TRAC #22041 Signed-off-by: Shannon Woods Signed-off-by: Daniel Koch Author: Geoff Lang git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@1420 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent c8b8f283
...@@ -38,6 +38,14 @@ struct Color ...@@ -38,6 +38,14 @@ struct Color
float alpha; float alpha;
}; };
struct Rectangle
{
int x;
int y;
int width;
int height;
};
struct RasterizerState struct RasterizerState
{ {
bool cullFace; bool cullFace;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment