Home
last modified time | relevance | path

Searched refs:programBinaryInfoBytes (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/hardware/google/gfxstream/guest/GLESv2_enc/
DGL2Encoder.cpp5022 std::string programBinaryInfoBytes; in getProgramBinaryLength() local
5023 SET_ERROR_IF(!programBinaryInfo.SerializeToString(&programBinaryInfoBytes), in getProgramBinaryLength()
5026 *outLength = static_cast<GLint>(programBinaryInfoBytes.size()); in getProgramBinaryLength()
5040 std::string programBinaryInfoBytes; in s_glGetProgramBinary() local
5041 SET_ERROR_IF(!programBinaryInfo.SerializeToString(&programBinaryInfoBytes), in s_glGetProgramBinary()
5044 SET_ERROR_IF(bufSize < programBinaryInfoBytes.size(), GL_INVALID_OPERATION); in s_glGetProgramBinary()
5047 *length = static_cast<GLsizei>(programBinaryInfoBytes.size()); in s_glGetProgramBinary()
5050 std::memcpy(binary, programBinaryInfoBytes.data(), programBinaryInfoBytes.size()); in s_glGetProgramBinary()
5062 std::string programBinaryInfoBytes(reinterpret_cast<const char*>(binary), length); in s_glProgramBinary()
5065 if (!programBinaryInfo.ParseFromString(programBinaryInfoBytes)) { in s_glProgramBinary()