diff options
author | Andrew Hsieh <andrewhsieh@google.com> | 2014-12-23 09:55:56 +0800 |
---|---|---|
committer | Andrew Hsieh <andrewhsieh@google.com> | 2014-12-23 11:00:18 +0800 |
commit | f99d282a9f2e8193c42a9fe67fb5bd3ed6ef17e9 (patch) | |
tree | 18dc6fc85e6f5741b53727fef0f30dc52a373ed1 /9/platforms/android-19/arch-arm/usr/include/rs/rsg.spec | |
parent | 42ce49943254764752cf529ffb35d8a5da86e288 (diff) | |
download | prebuilts_ndk-f99d282a9f2e8193c42a9fe67fb5bd3ed6ef17e9.zip prebuilts_ndk-f99d282a9f2e8193c42a9fe67fb5bd3ed6ef17e9.tar.gz prebuilts_ndk-f99d282a9f2e8193c42a9fe67fb5bd3ed6ef17e9.tar.bz2 |
Add mips libr6
Also remove redundant files
Change-Id: I77ffd9db63b938904df3a1f3871518b087c1735a
Diffstat (limited to '9/platforms/android-19/arch-arm/usr/include/rs/rsg.spec')
-rw-r--r-- | 9/platforms/android-19/arch-arm/usr/include/rs/rsg.spec | 123 |
1 files changed, 0 insertions, 123 deletions
diff --git a/9/platforms/android-19/arch-arm/usr/include/rs/rsg.spec b/9/platforms/android-19/arch-arm/usr/include/rs/rsg.spec deleted file mode 100644 index 8ac73e8..0000000 --- a/9/platforms/android-19/arch-arm/usr/include/rs/rsg.spec +++ /dev/null @@ -1,123 +0,0 @@ -ProgramStoreCreate { - direct - param bool colorMaskR - param bool colorMaskG - param bool colorMaskB - param bool colorMaskA - param bool depthMask - param bool ditherEnable - param RsBlendSrcFunc srcFunc - param RsBlendDstFunc destFunc - param RsDepthFunc depthFunc - ret RsProgramStore - } - -ProgramRasterCreate { - direct - param bool pointSprite - param RsCullMode cull - ret RsProgramRaster -} - -ProgramBindConstants { - param RsProgram vp - param uint32_t slot - param RsAllocation constants - } - - -ProgramBindTexture { - param RsProgramFragment pf - param uint32_t slot - param RsAllocation a - } - -ProgramBindSampler { - param RsProgramFragment pf - param uint32_t slot - param RsSampler s - } - -ProgramFragmentCreate { - direct - param const char * shaderText - param const char ** textureNames - param const uint32_t * params - ret RsProgramFragment - } - -ProgramVertexCreate { - direct - param const char * shaderText - param const char ** textureNames - param const uint32_t * params - ret RsProgramVertex - } - -FontCreateFromFile { - param const char *name - param float fontSize - param uint32_t dpi - ret RsFont - } - -FontCreateFromMemory { - param const char *name - param float fontSize - param uint32_t dpi - param const void *data - ret RsFont - } - -MeshCreate { - param RsAllocation *vtx - param RsAllocation *idx - param uint32_t *primType - ret RsMesh - } - -PathCreate { - param RsPathPrimitive pp - param bool isStatic - param RsAllocation vertex - param RsAllocation loops - param float quality - ret RsPath - } - -ContextBindProgramStore { - param RsProgramStore pgm - } - -ContextBindProgramFragment { - param RsProgramFragment pgm - } - -ContextBindProgramVertex { - param RsProgramVertex pgm - } - -ContextBindProgramRaster { - param RsProgramRaster pgm - } - -ContextBindFont { - param RsFont pgm - } - -ContextSetSurface { - param uint32_t width - param uint32_t height - param RsNativeWindow sur - sync - } - -ContextBindRootScript { - param RsScript sampler - } - -ContextPause { - } - -ContextResume { - } |