Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/pipeline/
Dposition_to_ssbo.amber26 } dataOut;
31 dataOut.values[gl_VertexIndex] = position_in;
/third_party/vk-gl-cts/external/amber/src/tests/cases/
Dposition_to_ssbo.vkscript26 } dataOut;
31 dataOut.values[gl_VertexIndex] = position_in;
/third_party/glslang/Test/baseResults/
Dspv.dataOut.frag.out1 spv.dataOut.frag
DdataOut.frag.out1 dataOut.frag
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Drenderer_utils.h258 void GetMatrixUniform(GLenum type, GLfloat *dataOut, const GLfloat *source, bool transpose);
261 void GetMatrixUniform(GLenum type, NonFloatT *dataOut, const NonFloatT *source, bool transpose);
Drenderer_utils.cpp834 void GetMatrixUniform(GLenum type, GLfloat *dataOut, const GLfloat *source, bool transpose) in GetMatrixUniform() argument
842 GLfloat *outptr = dataOut + ((col * rows) + row); in GetMatrixUniform()
851 void GetMatrixUniform(GLenum type, NonFloatT *dataOut, const NonFloatT *source, bool transpose) in GetMatrixUniform() argument
/third_party/openGLES/extensions/AMD/
DAMD_shader_ballot.txt272 …| genUType swizzleInvocationsAMD( | dataOut[i+0] = isActive[i+offset.x] ?…
274 …| | dataOut[i+1] = isActive[i+offset.y] ?…
276 …| | dataOut[i+2] = isActive[i+offset.z] ?…
278 …| | dataOut[i+3] = isActive[i+offset.w] ?…
287 …| | - dataOut[i] is the return value of the f…
299 …| | dataOut[i] = isActive[j] ? dataIn[j] …
307 …| | - dataOut[i] is the return value of the f…
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/
DAMD_shader_ballot.txt272 …| genUType swizzleInvocationsAMD( | dataOut[i+0] = isActive[i+offset.x] ?…
274 …| | dataOut[i+1] = isActive[i+offset.y] ?…
276 …| | dataOut[i+2] = isActive[i+offset.z] ?…
278 …| | dataOut[i+3] = isActive[i+offset.w] ?…
287 …| | - dataOut[i] is the return value of the f…
299 …| | dataOut[i] = isActive[j] ? dataIn[j] …
307 …| | - dataOut[i] is the return value of the f…
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
Dmtl_utils.h64 uint8_t *dataOut);
Dmtl_resources.h204 uint8_t *dataOut);
Dmtl_resources.mm586 uint8_t *dataOut)
602 [get() getBytes:dataOut
Dmtl_utils.mm568 uint8_t *dataOut)
590 texture->getBytes(contextMtl, bytesPerRow, 0, mtlRegion, mipLevel, layer, dataOut);
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DProgram.cpp103 void UniformStateQueryCastLoop(DestT *dataOut, const uint8_t *srcPointer, int components) in UniformStateQueryCastLoop() argument
111 dataOut[comp] = UniformStateQueryCast<DestT>(*typedSrcPointer); in UniformStateQueryCastLoop()
4184 DestT *dataOut, in getUniformInternal() argument
4196 dataOut, reinterpret_cast<const uint8_t *>(tempValue), components); in getUniformInternal()
4203 UniformStateQueryCastLoop<GLint>(dataOut, reinterpret_cast<const uint8_t *>(tempValue), in getUniformInternal()
4211 UniformStateQueryCastLoop<GLuint>(dataOut, reinterpret_cast<const uint8_t *>(tempValue), in getUniformInternal()
4220 dataOut, reinterpret_cast<const uint8_t *>(tempValue), components); in getUniformInternal()
DProgram.h841 DestT *dataOut,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DProgramD3D.h481 void getUniformInternal(GLint location, DestT *dataOut) const;
DProgramD3D.cpp3269 void ProgramD3D::getUniformInternal(GLint location, DestT *dataOut) const in getUniformInternal()
3279 GetMatrixUniform(uniform.type, dataOut, reinterpret_cast<const DestT *>(srcPointer), true); in getUniformInternal()
3283 memcpy(dataOut, srcPointer, uniform.getElementSize()); in getUniformInternal()