diff options
Diffstat (limited to 'include/linux/gcdbglog.h')
-rw-r--r-- | include/linux/gcdbglog.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/linux/gcdbglog.h b/include/linux/gcdbglog.h index aa10418..35a198c 100644 --- a/include/linux/gcdbglog.h +++ b/include/linux/gcdbglog.h @@ -261,13 +261,6 @@ do { \ * Command buffer parser. */ -struct gcrect { - int l; - int t; - int r; - int b; -}; - struct gcsurfaceinfo { unsigned int width; unsigned int height; @@ -278,6 +271,13 @@ struct gcsurfaceinfo { unsigned int bpp; }; +struct gcrect { + int left; + int top; + int right; + int bottom; +}; + struct gcsourceinfo { struct gcsurfaceinfo surf; struct gcrect rect; |