- Forked from Godot Engine 4.7-dev (MIT License) - Rebranded to AeThex Engine with cyan/purple theme - Added AI-powered development assistant module - Integrated Claude API for code completion & error fixing - Custom hexagon logo and branding - Multi-platform CI/CD (Windows, Linux, macOS) - Built Linux editor binary (151MB) - Complete source code with all customizations Tech Stack: - C++ game engine core - AI Module: Claude 3.5 Sonnet integration - Build: SCons, 14K+ source files - License: MIT (Godot) + Custom (AeThex features) Ready for Windows build via GitHub Actions!
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
/* -*- tab-width: 4; -*- */
|
|
/* vi: set sw=2 ts=4 expandtab: */
|
|
|
|
/*
|
|
* Copyright 2010-2020 The Khronos Group Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @internal
|
|
* @file
|
|
* @~English
|
|
*
|
|
* @brief Interface of ktxStream for memory.
|
|
*
|
|
* @author Maksim Kolesin
|
|
* @author Georg Kolling, Imagination Technology
|
|
* @author Mark Callow, HI Corporation
|
|
*/
|
|
|
|
#ifndef MEMSTREAM_H
|
|
#define MEMSTREAM_H
|
|
|
|
#include "ktx.h"
|
|
|
|
/*
|
|
* Initialize a ktxStream to a ktxMemStream with internally
|
|
* allocated memory. Can be read or written.
|
|
*/
|
|
KTX_error_code ktxMemStream_construct(ktxStream* str,
|
|
ktx_bool_t freeOnDestruct);
|
|
/*
|
|
* Initialize a ktxStream to a read-only ktxMemStream reading
|
|
* from an array of bytes.
|
|
*/
|
|
KTX_error_code ktxMemStream_construct_ro(ktxStream* str,
|
|
const ktx_uint8_t* pBytes,
|
|
const ktx_size_t size);
|
|
void ktxMemStream_destruct(ktxStream* str);
|
|
|
|
KTX_error_code ktxMemStream_getdata(ktxStream* str, ktx_uint8_t** ppBytes);
|
|
|
|
#endif /* MEMSTREAM_H */
|