mirror of
				https://github.com/nicbarker/clay.git
				synced 2025-11-04 08:36:17 +00:00 
			
		
		
		
	Merge 63a74a92a8 into fd97d8179e
				
					
				
			This commit is contained in:
		
						commit
						c1d7bc9c6a
					
				
							
								
								
									
										24
									
								
								fuzz/fuzzing_target.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								fuzz/fuzzing_target.c
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,24 @@
 | 
				
			||||||
 | 
					#include "clay.h"
 | 
				
			||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					#include <stddef.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 | 
				
			||||||
 | 
					    if (size < sizeof(Clay_String)) return 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Clay_String testString = { .length = size, .chars = (const char *)data };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Clay_Dimensions dimensions = MeasureText(&testString, NULL);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Call other critical functions
 | 
				
			||||||
 | 
					    Clay_Arena arena = Clay_CreateArenaWithCapacityAndMemory(1024, (void*)data);
 | 
				
			||||||
 | 
					    Clay_Initialize(arena, (Clay_Dimensions){1024, 768});
 | 
				
			||||||
 | 
					    Clay_SetPointerState((Clay_Vector2){0, 0}, false);
 | 
				
			||||||
 | 
					    Clay_BeginLayout();
 | 
				
			||||||
 | 
					    Clay_EndLayout();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Handle pointer state changes
 | 
				
			||||||
 | 
					    Clay_SetPointerState((Clay_Vector2){1, 1}, true);
 | 
				
			||||||
 | 
					    Clay_SetPointerState((Clay_Vector2){2, 2}, false);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return 0;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Loading…
	
		Reference in a new issue