File: crn_value.cpp

package info (click to toggle)
crunch-dxtc 0.55.5-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,624 kB
  • sloc: cpp: 64,979; ansic: 633; python: 321; makefile: 116
file content (21 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// File: crn_value.cpp
// See Copyright Notice and license at the end of inc/crnlib.h
#include "crn_core.h"
#include "crn_value.h"

namespace crnlib {
const char* gValueDataTypeStrings[cDTTotal + 1] =
    {
        "invalid",
        "string",
        "bool",
        "int",
        "uint",
        "float",
        "vec3f",
        "vec3i",

        NULL,
};

}  // namespace crnlib