From 9fd995f19d7ca4289edc92cc52e214b97c15b6a6 Mon Sep 17 00:00:00 2001 From: Rich Geldreich Date: Wed, 19 Mar 2014 16:29:30 -0700 Subject: [PATCH] Fixing various issues that were showing up when trying to snapshot/restore Cube 2: - RBO's which have been genned but never initialized are now properly snapshotted/restored - Adding support for GL_FLOAT_RG16_NV - Fixing size of XVisualInfo struct's ctype desc so the --find command doesn't trigger a harmless but annoying assert in 32-bit builds while scanning through 64-bit traces - Misc help text fixes --- src/voglreplay/vogl_replay_tool.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/voglreplay/vogl_replay_tool.cpp b/src/voglreplay/vogl_replay_tool.cpp index e11ed0a..40e23a4 100644 --- a/src/voglreplay/vogl_replay_tool.cpp +++ b/src/voglreplay/vogl_replay_tool.cpp @@ -126,12 +126,12 @@ static command_line_param_desc g_command_line_param_descs[] = // find specific { "find_func", 1, false, "Find: Limit the find to only the specified function name POSIX regex pattern" }, { "find_param", 1, false, "Find: The parameter value to find, hex, decimal integers, or GL enum strings OK" }, - { "find_namespace", 1, false, "Find: Optionally limits -handle to only parameters using the specified handle namespace: invalid, GLhandleARB, GLframebuffer, GLtexture, GLrenderbuffer, GLquery, GLsampler, GLprogramARB, GLprogram, GLarray, GLlist, GLlocation, GLlocationARB, GLfence, GLsync, GLpipeline, GLshader, GLbuffer, GLfeedback, GLarrayAPPLE, GLfragmentShaderATI" }, - { "find_param_name", 1, false, "Find: Optionally limits the find to only params with the specified name (specify \"return\" to limit search to only return values)" }, - { "find_frame_low", 1, false, "Find: Optionally limit the find to frames beginning at the specified frame index" }, - { "find_frame_high", 1, false, "Find: Optionally limit the find to frames up to and including the specified frame index" }, - { "find_call_low", 1, false, "Find: Optionally limit the find to GL calls beginning at the specified call index" }, - { "find_call_high", 1, false, "Find: Optionally limit the find to GL calls up to and including the specified call index" }, + { "find_namespace", 1, false, "Find: Limits --find_param to only parameters using the specified handle namespace: invalid, GLhandleARB, GLframebuffer, GLtexture, GLrenderbuffer, GLquery, GLsampler, GLprogramARB, GLprogram, GLarray, GLlist, GLlocation, GLlocationARB, GLfence, GLsync, GLpipeline, GLshader, GLbuffer, GLfeedback, GLarrayAPPLE, GLfragmentShaderATI" }, + { "find_param_name", 1, false, "Find: Limits the find to only params with the specified name (specify \"return\" to limit search to only return values)" }, + { "find_frame_low", 1, false, "Find: Limit the find to frames beginning at the specified frame index" }, + { "find_frame_high", 1, false, "Find: Limit the find to frames up to and including the specified frame index" }, + { "find_call_low", 1, false, "Find: Limit the find to GL calls beginning at the specified call index" }, + { "find_call_high", 1, false, "Find: Limit the find to GL calls up to and including the specified call index" }, // compare_hash_files specific { "sum_compare_threshold", 1, false, "compare_hash_files: Only report mismatches greater than the specified threshold, use with --sum_hashing" }, -- 2.43.0