Changeset 449 for branches/thune
- Timestamp:
- 08/08/07 04:40:41 (16 months ago)
- Location:
- branches/thune/thread_safe/gl
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/thune/thread_safe/gl/gx_dt.c
r438 r449 102 102 103 103 size = _rasterBinarySize( format, 8, w, h ); 104 binN = ur_makeBinary( size ); 105 bin = ur_binPtr( binN ); 104 binN = ur_makeBinary( size, &bin ); 106 105 bin->used = size; 107 106 rh = (RasterHead*) bin->ptr.v; -
branches/thune/thread_safe/gl/rfont.c
r390 r449 138 138 ks = tf.kerning ? tf.kern_bytes : 0; 139 139 140 binN = ur_makeBinary( sizeof(TexFont) + gs + ts + ks ); 141 bin = ur_binPtr( binN ); 140 binN = ur_makeBinary( sizeof(TexFont) + gs + ts + ks, &bin ); 142 141 bin->used = bin->avail; 143 142
