Add missing bindProgramRaster to scriptC_lib.

Change-Id: I06a7075a94ef907478f986b59ded4ff3e2766585
diff --git a/rsScriptC_Lib.cpp b/rsScriptC_Lib.cpp
index d94a62c..5cf0fdb 100644
--- a/rsScriptC_Lib.cpp
+++ b/rsScriptC_Lib.cpp
@@ -649,21 +649,24 @@
 {
     GET_TLS();
     rsi_ContextBindProgramFragmentStore(rsc, pfs);
-
 }
 
 static void SC_bindProgramFragment(RsProgramFragment pf)
 {
     GET_TLS();
     rsi_ContextBindProgramFragment(rsc, pf);
-
 }
 
 static void SC_bindProgramVertex(RsProgramVertex pv)
 {
     GET_TLS();
     rsi_ContextBindProgramVertex(rsc, pv);
+}
 
+static void SC_bindProgramRaster(RsProgramRaster pv)
+{
+    GET_TLS();
+    rsi_ContextBindProgramRaster(rsc, pv);
 }
 
 //////////////////////////////////////////////////////////////////////////////
@@ -1316,6 +1319,7 @@
     { "bindProgramFragmentStore", (void *)&SC_bindProgramFragmentStore },
     { "bindProgramStore", (void *)&SC_bindProgramFragmentStore },
     { "bindProgramVertex", (void *)&SC_bindProgramVertex },
+    { "bindProgramRaster", (void *)&SC_bindProgramRaster },
     { "bindSampler", (void *)&SC_bindSampler },
     { "bindTexture", (void *)&SC_bindTexture },