diff options
| author | 2009-07-01 16:43:14 -0700 | |
|---|---|---|
| committer | 2009-07-01 16:43:14 -0700 | |
| commit | d4b95fd87d2a437afc5154b3a926ca46fd59bafc (patch) | |
| tree | 2f73e7b92ede944754a029617123fa0e75a6628b /libs/rs/RenderScript.h | |
| parent | 1b4308996483bb02c105fee18d32ef3db1e62a74 (diff) | |
| parent | 7c878f3a8379daf21dca6de7aa722ff75328afbe (diff) | |
Merge change 5983
* changes:
Begin adding mesh
Diffstat (limited to 'libs/rs/RenderScript.h')
| -rw-r--r-- | libs/rs/RenderScript.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libs/rs/RenderScript.h b/libs/rs/RenderScript.h index 734fba7ce429..5f551df6465c 100644 --- a/libs/rs/RenderScript.h +++ b/libs/rs/RenderScript.h @@ -173,6 +173,14 @@ enum RsTexEnvMode { RS_TEX_ENV_MODE_DECAL }; +enum RsPrimitive { + RS_PRIMITIVE_POINT, + RS_PRIMITIVE_LINE, + RS_PRIMITIVE_LINE_STRIP, + RS_PRIMITIVE_TRIANGLE, + RS_PRIMITIVE_TRIANGLE_STRIP, + RS_PRIMITIVE_TRIANGLE_FAN +}; #include "rsgApiFuncDecl.h" |