Searched defs:uiSize (Results 1 - 10 of 10) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/04_BasicTnL/OGLES/
H A DOGLESBasicTnL.cpp161 unsigned int uiSize = 3 * (sizeof(float) * 8); // 3 vertices * stride (8 verttypes per vertex) local
167 glBufferData(GL_ARRAY_BUFFER, uiSize, afVertices, GL_STATIC_DRAW);
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTMap.h39 EPVRTError Reserve(const PVRTuint32 uiSize) argument
43 return PVRT_MAX(m_Keys.SetCapacity(uiSize),m_Data.SetCapacity(uiSize));
H A DPVRTArray.h37 @param[in] uiSize intial size of array
39 CPVRTArray(const unsigned int uiSize) : m_uiSize(0), m_uiCapacity(uiSize) argument
41 _ASSERT(uiSize != 0);
42 m_pArray = new T[uiSize];
62 @param[in] uiSize number of elements passed
64 CPVRTArray(const T* const pArray, const unsigned int uiSize) : m_uiSize(uiSize), argument
65 m_uiCapacity(uiSize)
67 _ASSERT(uiSize !
80 CPVRTArray(const unsigned int uiSize, const T& val) argument
198 Resize(const unsigned int uiSize) argument
213 SetCapacity(const unsigned int uiSize) argument
[all...]
H A DPVRTMisc.cpp384 unsigned int uiSize = 1; local
385 while (uiSize < uiOriginalValue) uiSize *= 2;
390 uiSize *= 2;
393 return uiSize;
413 unsigned int uiSize = PVRTGetPOTHigher(uiOriginalValue,1); local
414 uiSize >>= 1;//uiSize /=2;
418 uiSize >>= 1;//uiSize /
[all...]
/external/parameter-framework/upstream/remote-processor/
H A DMessage.cpp100 uint32_t uiSize; local
102 readData(&uiSize, sizeof(uiSize));
105 std::vector<char> string(uiSize + 1);
108 readData(string.data(), uiSize);
158 uint32_t uiSize = (uint32_t)(sizeof(_ucMsgId) + getMessageDataSize()); local
160 if (!asio::write(asioSocket, asio::buffer(&uiSize, sizeof(uiSize)), ec)) {
210 uint32_t uiSize = 0; local
212 if (!asio::read(asioSocket, asio::buffer(&uiSize, sizeo
[all...]
/external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/OGLES2/
H A DOGLES2HelloAPI_Windows.cpp435 unsigned int uiSize = 3 * (sizeof(GLfloat) * 3); // Calc afVertices size (3 vertices * stride (3 GLfloats per vertex)) local
436 glBufferData(GL_ARRAY_BUFFER, uiSize, afVertices, GL_STATIC_DRAW);
/external/parameter-framework/upstream/parameter/
H A DConfigurableElement.cpp357 size_t uiSize = 0; local
365 uiSize += pConfigurableElement->getFootPrint();
368 return uiSize;
/external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/DisplacementMap/OGLES2/
H A DOGLES2DisplacementMap.cpp272 unsigned int uiSize = Mesh.nNumVertex * Mesh.sVertex.nStride; local
274 glBufferData(GL_ARRAY_BUFFER, uiSize, Mesh.pInterleaved, GL_STATIC_DRAW);
281 uiSize = PVRTModelPODCountIndices(Mesh) * sizeof(GLshort);
283 glBufferData(GL_ELEMENT_ARRAY_BUFFER, uiSize, Mesh.sFaces.pData, GL_STATIC_DRAW);
/external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/ColourGrading/OGLES3/
H A DOGLES3ColourGrading.cpp349 unsigned int uiSize = Mesh.nNumVertex * Mesh.sVertex.nStride; local
351 glBufferData(GL_ARRAY_BUFFER, uiSize, Mesh.pInterleaved, GL_STATIC_DRAW);
358 uiSize = PVRTModelPODCountIndices(Mesh) * sizeof(GLshort);
360 glBufferData(GL_ELEMENT_ARRAY_BUFFER, uiSize, Mesh.sFaces.pData, GL_STATIC_DRAW);
/external/swiftshader/third_party/PowerVR_SDK/Examples/Advanced/ChameleonMan/OGLES2/
H A DOGLES2ChameleonMan.cpp361 unsigned int uiSize = Mesh.nNumVertex * Mesh.sVertex.nStride; local
364 glBufferData(GL_ARRAY_BUFFER, uiSize, Mesh.pInterleaved, GL_STATIC_DRAW);
372 uiSize = PVRTModelPODCountIndices(Mesh) * sizeof(GLshort);
374 glBufferData(GL_ELEMENT_ARRAY_BUFFER, uiSize, Mesh.sFaces.pData, GL_STATIC_DRAW);

Completed in 612 milliseconds