diff options
author | Brian Paul <[email protected]> | 2008-06-09 14:22:15 -0600 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-09-21 22:13:51 -0700 |
commit | 28876dd511ec2c9d5f5500499201df2588e8c7f1 (patch) | |
tree | 7a2963e79e9e488af24639e78536714283bc8674 /src/mesa/main/state.c | |
parent | 87534210bb9fe5f4e3053d12123491a8c2ccbf6d (diff) |
mesa: refactor: move glReadPixels code into new readpix.c file
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index e285a9e0957..52c917e848d 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -1,8 +1,8 @@ /* * Mesa 3-D graphics library - * Version: 6.5.1 + * Version: 7.1 * - * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2008 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -79,6 +79,7 @@ #include "queryobj.h" #endif #include "rastpos.h" +#include "readpix.h" #include "state.h" #include "stencil.h" #include "teximage.h" |