Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef RENDER_SCRIPT_H |
| 18 | #define RENDER_SCRIPT_H |
| 19 | |
| 20 | #include <stdint.h> |
| 21 | #include <sys/types.h> |
| 22 | |
| 23 | #ifdef __cplusplus |
| 24 | extern "C" { |
| 25 | #endif |
| 26 | |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 27 | #include "RenderScriptDefines.h" |
Jason Sams | 11c8af9 | 2010-10-13 15:31:10 -0700 | [diff] [blame] | 28 | |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 29 | // |
Alex Sakhartchouk | 581cc64 | 2010-10-27 14:10:07 -0700 | [diff] [blame] | 30 | // A3D loading and object update code. |
| 31 | // Should only be called at object creation, not thread safe |
| 32 | RsObjectBase rsaFileA3DGetEntryByIndex(RsContext, uint32_t idx, RsFile); |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 33 | RsFile rsaFileA3DCreateFromMemory(RsContext, const void *data, uint32_t len); |
| 34 | RsFile rsaFileA3DCreateFromAsset(RsContext, void *asset); |
| 35 | RsFile rsaFileA3DCreateFromFile(RsContext, const char *path); |
Alex Sakhartchouk | 581cc64 | 2010-10-27 14:10:07 -0700 | [diff] [blame] | 36 | void rsaFileA3DGetNumIndexEntries(RsContext, int32_t *numEntries, RsFile); |
Alex Sakhartchouk | 7d5f5e7 | 2011-10-18 11:08:31 -0700 | [diff] [blame] | 37 | void rsaFileA3DGetIndexEntries(RsContext, RsFileIndexEntry *fileEntries, |
| 38 | uint32_t numEntries, RsFile); |
Alex Sakhartchouk | 581cc64 | 2010-10-27 14:10:07 -0700 | [diff] [blame] | 39 | void rsaGetName(RsContext, void * obj, const char **name); |
| 40 | // Mesh update functions |
| 41 | void rsaMeshGetVertexBufferCount(RsContext, RsMesh, int32_t *vtxCount); |
| 42 | void rsaMeshGetIndexCount(RsContext, RsMesh, int32_t *idxCount); |
| 43 | void rsaMeshGetVertices(RsContext, RsMesh, RsAllocation *vtxData, uint32_t vtxDataCount); |
Alex Sakhartchouk | 7d5f5e7 | 2011-10-18 11:08:31 -0700 | [diff] [blame] | 44 | void rsaMeshGetIndices(RsContext, RsMesh, RsAllocation *va, |
| 45 | uint32_t *primType, uint32_t idxDataCount); |
Alex Sakhartchouk | 581cc64 | 2010-10-27 14:10:07 -0700 | [diff] [blame] | 46 | // Allocation update |
| 47 | const void* rsaAllocationGetType(RsContext con, RsAllocation va); |
| 48 | // Type update |
| 49 | void rsaTypeGetNativeData(RsContext, RsType, uint32_t *typeData, uint32_t typeDataSize); |
| 50 | // Element update |
| 51 | void rsaElementGetNativeData(RsContext, RsElement, uint32_t *elemData, uint32_t elemDataSize); |
Alex Sakhartchouk | 7d5f5e7 | 2011-10-18 11:08:31 -0700 | [diff] [blame] | 52 | void rsaElementGetSubElements(RsContext, RsElement, uint32_t *ids, const char **names, |
| 53 | uint32_t *arraySizes, uint32_t dataSize); |
Jason Sams | 11c8af9 | 2010-10-13 15:31:10 -0700 | [diff] [blame] | 54 | |
Jason Sams | d9d37cc | 2011-05-18 17:36:02 -0700 | [diff] [blame] | 55 | RsDevice rsDeviceCreate(); |
| 56 | void rsDeviceDestroy(RsDevice dev); |
| 57 | void rsDeviceSetConfig(RsDevice dev, RsDeviceParam p, int32_t value); |
Stephen Hines | 4382467a | 2011-08-01 15:02:34 -0700 | [diff] [blame] | 58 | RsContext rsContextCreate(RsDevice dev, uint32_t version, uint32_t sdkVersion); |
Alex Sakhartchouk | 7d5f5e7 | 2011-10-18 11:08:31 -0700 | [diff] [blame] | 59 | RsContext rsContextCreateGL(RsDevice dev, uint32_t version, uint32_t sdkVersion, |
| 60 | RsSurfaceConfig sc, uint32_t dpi); |
Jason Sams | d9d37cc | 2011-05-18 17:36:02 -0700 | [diff] [blame] | 61 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 62 | #include "rsgApiFuncDecl.h" |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 63 | |
| 64 | #ifdef __cplusplus |
| 65 | }; |
| 66 | #endif |
| 67 | |
| 68 | #endif // RENDER_SCRIPT_H |
| 69 | |
| 70 | |
| 71 | |