Improved OpenGL renderer.

- Improved Vertex Shader Decompiler.
- Fixed CMD analyzer.

- Improved sys_fs module.
- Minor fixes.
This commit is contained in:
DH 2013-10-06 17:15:04 +03:00
parent dd48f827c3
commit 8259006bc3
10 changed files with 193 additions and 157 deletions

View file

@ -56,6 +56,8 @@ enum FsDirentType
CELL_FS_TYPE_SYMLINK = 3,
};
#pragma pack(4)
struct CellFsStat
{
be_t<u32> st_mode;
@ -79,4 +81,6 @@ struct CellFsDirent
u8 d_type;
u8 d_namlen;
char d_name[CELL_MAX_FS_FILE_NAME_LENGTH + 1];
};
};
#pragma pack()