Skip to content

Commit

Permalink
AssimpView:
Browse files Browse the repository at this point in the history
 - postprocessing configuration is no (partially) configurable.
 - adding linsk to Assimp homepage/bugtracker/forums.
 - updating about dialog.  
 - fixing colors of texture view (tiny array overrun ...).
 - minor UI theme adjustments.
 - 'setup file extensions' works again.
 - normal smooth limit is now used for primary import, too.
 - minor spelling fixes in the UI.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@417 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
  • Loading branch information
aramis_acg committed May 9, 2009
1 parent b7ecf79 commit 84c6b4f
Show file tree
Hide file tree
Showing 12 changed files with 315 additions and 107 deletions.
3 changes: 3 additions & 0 deletions CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,6 @@ Contributed fixes for the documentation and the doxygen markup

- Zhao Lei
Contributed several bugfixes fixing memory leaks and improving float parsing

- sueastside
Updated PyAssimp to the latest Assimp data structures and provided a script to keep the Python binding up-to-date.
11 changes: 5 additions & 6 deletions mkutil/mkrev.bat
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,13 @@ set /p addtext= < tmpfile.txt
del /q tmpfile.txt
cd ..\mkutil

echo #define SVNRevision > revision.h
echo #define SVNRevision > tmpfile.txt

if exist tmpfile.txt del /q tmpfile.txt
for /f "delims=" %%l in (revision.h) Do (
echo %%l %addtext% >> tmpfile.txt
if exist revision.h del /q revision.h
for /f "delims=" %%l in (tmpfile.txt) Do (
echo %%l %addtext% >> revision.h
)
del /q revision.h
ren tmpfile.txt revision.h
del /q tmpfile.txt



2 changes: 1 addition & 1 deletion tools/assimp_view/Display.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class CDisplay
this->m_aiImageList[4] = 4;

this->m_avCheckerColors[0].x = this->m_avCheckerColors[0].y = this->m_avCheckerColors[0].z = 0.4f;
this->m_avCheckerColors[0].x = this->m_avCheckerColors[1].y = this->m_avCheckerColors[2].z = 0.6f;
this->m_avCheckerColors[1].x = this->m_avCheckerColors[1].y = this->m_avCheckerColors[1].z = 0.6f;
}

public:
Expand Down
Binary file modified tools/assimp_view/HUD.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion tools/assimp_view/LogDisplay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void CLogDisplay::OnRender()
// if no asset is loaded draw a "no asset loaded" text in the center
if (!g_pcAsset)
{
const char* szText = "No asset loaded\r\nUse [Viewer | Open asset] to load one";
const char* szText = "Nothing to display ... \r\nTry [Viewer | Open asset] to load an asset";

// shadow
RECT sCopy;
Expand Down
Loading

0 comments on commit 84c6b4f

Please sign in to comment.