diff options
author | Ian Romanick <[email protected]> | 2011-09-06 15:30:54 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-10-18 17:26:37 -0700 |
commit | a541ff3fb99f43f9f664daf275e315af2836977e (patch) | |
tree | 684d62b751fb07efd556f921b03e905a24853f33 /src/mesa/sources.mak | |
parent | 118fd08b586970175af9ae269c81c0f501acba25 (diff) |
mesa: Move _mesa_GetActiveUniformARB to uniform_query.cpp
Fold _mesa_get_active_uniform into its only caller in the process.
More changes are coming soon.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/sources.mak')
-rw-r--r-- | src/mesa/sources.mak | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/sources.mak b/src/mesa/sources.mak index f29213ec0d5..aedee3d1c71 100644 --- a/src/mesa/sources.mak +++ b/src/mesa/sources.mak @@ -105,7 +105,8 @@ MAIN_SOURCES = \ MAIN_CXX_SOURCES = \ main/ff_fragment_shader.cpp \ - main/shader_query.cpp + main/shader_query.cpp \ + main/uniform_query.cpp MATH_SOURCES = \ math/m_debug_clip.c \ |