Array and Table Literal Expressions for Kym #11
| @ -143,10 +143,6 @@ pub fn allocate_many(comptime Type: type, amount: usize, allocator: Allocator) A | |||||||
| 		@compileError("Cannot allocate memory for 0-byte type " ++ @typeName(Type)); | 		@compileError("Cannot allocate memory for 0-byte type " ++ @typeName(Type)); | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	if (amount == 0) { |  | ||||||
| 		return &.{}; |  | ||||||
| 	} |  | ||||||
| 
 |  | ||||||
| 	return @ptrCast([*]Type, @alignCast(@alignOf(Type), allocator.invoke(.{.size = @sizeOf(Type) * amount}) orelse { | 	return @ptrCast([*]Type, @alignCast(@alignOf(Type), allocator.invoke(.{.size = @sizeOf(Type) * amount}) orelse { | ||||||
| 		return error.OutOfMemory; | 		return error.OutOfMemory; | ||||||
| 	}))[0 .. amount]; | 	}))[0 .. amount]; | ||||||
|  | |||||||
| @ -7,15 +7,23 @@ const Context = struct { | |||||||
| 
 | 
 | ||||||
| 	const Self = @This(); | 	const Self = @This(); | ||||||
| 
 | 
 | ||||||
|  | 	const empty_allocation = [0]u8{}; | ||||||
|  | 
 | ||||||
| 	fn reallocate(self: *Self, options: coral.io.AllocationOptions) ?[]u8 { | 	fn reallocate(self: *Self, options: coral.io.AllocationOptions) ?[]u8 { | ||||||
| 		if (options.size == 0) { | 		if (options.size == 0) { | ||||||
| 			if (options.allocation) |allocation| { | 			if (options.allocation) |allocation| { | ||||||
| 				ext.SDL_free(allocation.ptr); | 				if (allocation.ptr != &empty_allocation) { | ||||||
|  | 					ext.SDL_free(allocation.ptr); | ||||||
|  | 				} | ||||||
| 
 | 
 | ||||||
| 				self.live_allocations -= 1; | 				self.live_allocations -= 1; | ||||||
|  | 
 | ||||||
|  | 				return null; | ||||||
| 			} | 			} | ||||||
| 
 | 
 | ||||||
| 			return null; | 			self.live_allocations += 1; | ||||||
|  | 
 | ||||||
|  | 			return &empty_allocation; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		if (options.allocation) |allocation| { | 		if (options.allocation) |allocation| { | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user