cables_dev/cables/src/core/cg/cg_constants.js
- import { BoundingBox } from "./cg_boundingbox.js";
- import { CgCanvas } from "./cg_canvas.js";
- import { Geometry } from "./cg_geom.js";
- import FpsCounter from "./sg_fpscounter.js";
-
- const CG = {
-
- "GAPI_WEBGL": 0,
- "GAPI_WEBGPU": 1,
-
- "DEPTH_COMPARE_NEVER": 0,
- "DEPTH_COMPARE_LESS": 1,
- "DEPTH_COMPARE_EQUAL": 2,
- "DEPTH_COMPARE_LESSEQUAL": 3,
- "DEPTH_COMPARE_GREATER": 4,
- "DEPTH_COMPARE_NOTEQUAL": 5,
- "DEPTH_COMPARE_GREATEREQUAL": 6,
- "DEPTH_COMPARE_ALWAYS": 7,
-
- "CULL_NONE": 0,
- "CULL_BACK": 1,
- "CULL_FRONT": 2,
- "CULL_BOTH": 3,
-
-
- "Geometry": Geometry,
- "BoundingBox": BoundingBox,
- "FpsCounter": FpsCounter,
-
- "CgCanvas": CgCanvas
- };
-
-
- export { CG };