在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用add-gles-test
星标9
分支12
更新时间2026年6月7日 17:31
Add an GLES / OpenGL ES test or microbenchmark
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Add an GLES / OpenGL ES test or microbenchmark
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add an OpenCL test or microbenchmark
Add a Vulkan test or microbenchmark
Check support for a particular Vulkan extension
Add a test case for a particular Vulkan extension
Use this skill to update chameleon to the latest Khronos specs
Add extension usage detection
| name | add-gles-test |
| description | Add an GLES / OpenGL ES test or microbenchmark |
| metadata | {"short-description":"Add a GLES test"} |
src/gles_<name>.cpp and a bench file benchmarking/gles_<name>.bench.CMakeLists.txt with gles_test(<name>).ctest -R gles_<name> --output-on-failure.Minimal src/gles_<name>.cpp:
#include "gles_common.h"
static int setup_graphics(TOOLSTEST *handle)
{
// ... set up context here ...
}
static void callback_draw(TOOLSTEST *handle)
{
// ... do work here ...
}
static void test_cleanup(TOOLSTEST *handle)
{
// ... cleanup here ...
}
int main(int argc, char** argv)
{
return init(argc, argv, "gles_<name>.cpp", callback_draw, setup_graphics, test_cleanup);
}
Minimal benchmarking/gles_<name>.bench:
{ "name": "gles_<name>", "description": "<short description of test>" }