From: José Fonseca Date: Tue, 19 Jul 2011 15:20:35 +0000 (-0700) Subject: Add missing call to dumpCurrentProgramObj. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=810f93bf8e2bcbb774842f7d478c82ce5307be08;p=apitrace Add missing call to dumpCurrentProgramObj. --- diff --git a/glstate.cpp b/glstate.cpp index a689f11..79365ed 100644 --- a/glstate.cpp +++ b/glstate.cpp @@ -240,6 +240,7 @@ dumpShaders(JSONWriter &json) json.beginMember("shaders"); json.beginObject(); dumpCurrentProgram(json); + dumpCurrentProgramObj(json); dumpArbProgram(json, GL_FRAGMENT_PROGRAM_ARB); dumpArbProgram(json, GL_VERTEX_PROGRAM_ARB); json.endObject();