diff -r 5b9d4d8641ce -r ae255c9aa552 sysperfana/perfinvestigator/com.nokia.carbide.cpp.pi/src/com/nokia/carbide/cpp/internal/pi/visual/GenericTable.java --- a/sysperfana/perfinvestigator/com.nokia.carbide.cpp.pi/src/com/nokia/carbide/cpp/internal/pi/visual/GenericTable.java Wed Jun 23 14:49:59 2010 +0300 +++ b/sysperfana/perfinvestigator/com.nokia.carbide.cpp.pi/src/com/nokia/carbide/cpp/internal/pi/visual/GenericTable.java Wed Jun 23 15:05:09 2010 +0300 @@ -102,6 +102,9 @@ protected static final String COLUMN_HEAD_LIBRARY_NAME = Messages.getString("GenericTable.libraryName"); //$NON-NLS-1$ protected static final String COLUMN_HEAD_LIBRARY_LOAD_SIZE = Messages.getString("GenericTable.libraryLoadSize"); //$NON-NLS-1$ protected static final String COLUMN_HEAD_LIBRARY_SELECTION_LOAD_COUNT = Messages.getString("GenericTable.librarySelectionLoadCount"); //$NON-NLS-1$ + protected static final String COLUMN_HEAD_GRAPHICS_MEMORY_NAME = Messages.getString("GenericTable.process"); //$NON-NLS-1$ + protected static final String COLUMN_HEAD_GRAPHICS_MEMORY_PRIVATE = Messages.getString("GenericTable.private"); //$NON-NLS-1$ + protected static final String COLUMN_HEAD_GRAPHICS_MEMORY_SHARED = Messages.getString("GenericTable.shared"); //$NON-NLS-1$ // table column widths protected static final int COLUMN_WIDTH_SHOW = 40; @@ -122,8 +125,11 @@ protected static final int COLUMN_WIDTH_8_DIGIT_HEX = 100; protected static final int COLUMN_WIDTH_MEMORY_CHUNKS = 80; protected static final int COLUMN_WIDTH_MEMORY_STACK = 80; + protected static final int COLUMN_WIDTH_GRAPHICS_MEMORY_PRIVATE = 80; + protected static final int COLUMN_WIDTH_GRAPHICS_MEMORY_SHARED = 80; protected static final int COLUMN_WIDTH_MEMORY_TOTAL = 80; protected static final int COLUMN_WIDTH_MEMORY_NAME = 300; + protected static final int COLUMN_WIDTH_GRAPHICS_MEMORY_NAME = 300; protected static final int COLUMN_WIDTH_THREAD_IRQ_LINE = 300; protected static final int COLUMN_WIDTH_LIBRARY_LOAD_SIZE = 80; protected static final int COLUMN_WIDTH_LIBRARY_NAME = 250;