aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-05-31 18:09:11 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-05-31 18:09:11 +0000
commit6f6efa90c48a8c8f0052f65b54cdeeaad67fea44 (patch)
tree7936199956efeab61c25fefd9518842e95a6107b /src/gpu/gl
parent4d063dea5ee9d5a62e3566a07cb8386cb1a59585 (diff)
Add glTexParameteriv to MESA GrGLInterface (missing from r4099)
git-svn-id: http://skia.googlecode.com/svn/trunk@4100 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu/gl')
-rw-r--r--src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp b/src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp
index 3745bf2155..fc3e25de73 100644
--- a/src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp
+++ b/src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp
@@ -127,6 +127,7 @@ const GrGLInterface* GrGLCreateMesaInterface() {
GR_GL_GET_PROC(StencilOpSeparate);
GR_GL_GET_PROC(TexImage2D)
GR_GL_GET_PROC(TexParameteri);
+ GR_GL_GET_PROC(TexParameteriv);
GR_GL_GET_PROC(TexStorage2D);
if (NULL == interface->fTexStorage2D) {
GR_GL_GET_PROC_SUFFIX(TexStorage2D, EXT);