Jason Sams | 326e0dd | 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 | |
Jason Sams | 3715b00 | 2012-02-16 16:07:49 -0800 | [diff] [blame] | 23 | #include "rsDefines.h" |
Jason Sams | 6b8552a | 2010-10-13 15:31:10 -0700 | [diff] [blame] | 24 | |
Tim Murray | c2ce707 | 2013-07-17 18:38:53 -0700 | [diff] [blame] | 25 | // Legacy graphics functions |
| 26 | // Not extern C because not used from C++ API |
Alex Sakhartchouk | dc763f3 | 2010-10-27 14:10:07 -0700 | [diff] [blame] | 27 | RsObjectBase rsaFileA3DGetEntryByIndex(RsContext, uint32_t idx, RsFile); |
Alex Sakhartchouk | 5224a27 | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 28 | RsFile rsaFileA3DCreateFromMemory(RsContext, const void *data, uint32_t len); |
| 29 | RsFile rsaFileA3DCreateFromAsset(RsContext, void *asset); |
| 30 | RsFile rsaFileA3DCreateFromFile(RsContext, const char *path); |
Alex Sakhartchouk | dc763f3 | 2010-10-27 14:10:07 -0700 | [diff] [blame] | 31 | void rsaFileA3DGetNumIndexEntries(RsContext, int32_t *numEntries, RsFile); |
Alex Sakhartchouk | 31aca7d | 2011-10-18 11:08:31 -0700 | [diff] [blame] | 32 | void rsaFileA3DGetIndexEntries(RsContext, RsFileIndexEntry *fileEntries, |
| 33 | uint32_t numEntries, RsFile); |
Alex Sakhartchouk | dc763f3 | 2010-10-27 14:10:07 -0700 | [diff] [blame] | 34 | // Mesh update functions |
| 35 | void rsaMeshGetVertexBufferCount(RsContext, RsMesh, int32_t *vtxCount); |
| 36 | void rsaMeshGetIndexCount(RsContext, RsMesh, int32_t *idxCount); |
| 37 | void rsaMeshGetVertices(RsContext, RsMesh, RsAllocation *vtxData, uint32_t vtxDataCount); |
Alex Sakhartchouk | 31aca7d | 2011-10-18 11:08:31 -0700 | [diff] [blame] | 38 | void rsaMeshGetIndices(RsContext, RsMesh, RsAllocation *va, |
| 39 | uint32_t *primType, uint32_t idxDataCount); |
Alex Sakhartchouk | 31aca7d | 2011-10-18 11:08:31 -0700 | [diff] [blame] | 40 | RsContext rsContextCreateGL(RsDevice dev, uint32_t version, uint32_t sdkVersion, |
| 41 | RsSurfaceConfig sc, uint32_t dpi); |
Jason Sams | 789ca83 | 2011-05-18 17:36:02 -0700 | [diff] [blame] | 42 | |
Tim Murray | c2ce707 | 2013-07-17 18:38:53 -0700 | [diff] [blame] | 43 | extern "C" { |
| 44 | void rsaGetName(RsContext, void * obj, const char **name); |
| 45 | // Allocation update |
| 46 | const void* rsaAllocationGetType(RsContext con, RsAllocation va); |
| 47 | // Type update |
| 48 | void rsaTypeGetNativeData(RsContext, RsType, uint32_t *typeData, uint32_t typeDataSize); |
| 49 | // Element update |
| 50 | void rsaElementGetNativeData(RsContext, RsElement, uint32_t *elemData, uint32_t elemDataSize); |
| 51 | void rsaElementGetSubElements(RsContext, RsElement, uint32_t *ids, const char **names, |
| 52 | uint32_t *arraySizes, uint32_t dataSize); |
| 53 | |
| 54 | RsDevice rsDeviceCreate(); |
| 55 | void rsDeviceDestroy(RsDevice dev); |
| 56 | void rsDeviceSetConfig(RsDevice dev, RsDeviceParam p, int32_t value); |
| 57 | RsContext rsContextCreate(RsDevice dev, uint32_t version, uint32_t sdkVersion, |
Tim Murray | 84e3dea | 2013-09-09 16:12:51 -0700 | [diff] [blame] | 58 | RsContextType ct, uint32_t flags); |
Tim Murray | c2ce707 | 2013-07-17 18:38:53 -0700 | [diff] [blame] | 59 | } |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 60 | #include "rsgApiFuncDecl.h" |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 61 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 62 | #endif // RENDER_SCRIPT_H |
| 63 | |
| 64 | |
| 65 | |