Difference between revisions of "Image (RW Section)"
Jump to navigation
Jump to search
(Created page with "{{Stub}} {{RW Section | NAME = Image | VENDORNAME = Criterion Games | MODULENAME = Core | MODULEID = 000000 | IDENTIFIER = 18 }} An ''Image'' is a section containing sampler...") |
|||
Line 17: | Line 17: | ||
string textureName; | string textureName; | ||
}; | }; | ||
+ | </source> | ||
==See Also== | ==See Also== | ||
*[[Texture (RW Section)|Texture]] | *[[Texture (RW Section)|Texture]] | ||
*[[Texture Dictionary (RW Section)|Texture Dictionary]] | *[[Texture Dictionary (RW Section)|Texture Dictionary]] |
Revision as of 07:24, 24 October 2023
Image | |
---|---|
RenderWare Stream Section | |
Vendor | Criterion Games |
Module | Core |
Module ID | 0x000000
|
Identifier | 0x18
|
Chunk ID | 0x00000018
|
Versions | All |
Hierarchy | |
Parents: None | |
Children: None | |
Extensions: None | |
File Format |
An Image is a section containing sampler data stored for an individual texture.
Structure
struct rwImage {
RwRGBA pixelRGBA[numPixels] (RwRGBA: uint8 r, g, b, a);
unsigned int stringLength;
string textureName;
};