JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
Gdata.cpp
Go to the documentation of this file.
1
7#include "Gdata.h"
8
9
10using namespace jbxl;
11
12
15
16
26{
27 if (hd!=NULL) {
28 if (hd->buf!=NULL) free(hd->buf);
29 if (hd->grptr!=NULL) free(hd->grptr);
30 init_CmnHead(hd);
31 }
32}
33
34
43{
44 if (hd!=NULL) {
45 hd->buf = hd->grptr = NULL;
46 hd->kind = HEADER_NONE;
47 hd->xsize = hd->ysize = hd->zsize = 0;
48 hd->depth = hd->bsize = hd->lsize = 0;
49 }
50}
51
52
59{
60 CmnHead cmnhd = hd;
61
62 cmnhd.bsize = 0;
63 cmnhd.buf = NULL;
64 cmnhd.grptr = NULL;
65
66 return cmnhd;
67}
68
グラフィックデータ定義用ヘッダ
#define HEADER_NONE
0x8000 // ヘッダ種別の指定なし
Definition gheader.h:212
Definition Brep.h:29
int TempBase
Definition Gdata.cpp:14
void init_CmnHead(CmnHead *hd)
Definition Gdata.cpp:42
void free_CmnHead(CmnHead *hd)
Definition Gdata.cpp:25
CmnHead getinfo_CmnHead(CmnHead hd)
ヘッダ情報のみをコピーする
Definition Gdata.cpp:58
int ZeroBase
Definition Gdata.cpp:13
unsigned int lsize
Size of Graphics Data (byte unit)
Definition gheader.h:133
uByte * buf
Ture Header buffer
Definition gheader.h:137
int zsize
For 3D Data (or Color)
Definition gheader.h:130
int kind
Kind of Graphics Format.
Definition gheader.h:127
unsigned int bsize
Fllowing buf size or Any Data (byte unit)
Definition gheader.h:132
uByte * grptr
Pointer to Data.
Definition gheader.h:138
int ysize
Height of Graphics.
Definition gheader.h:129
int depth
Color Depth of Graphics (bit unit)
Definition gheader.h:131
int xsize
Width of Graphics.
Definition gheader.h:128