Lines Matching refs:y
251 …nt(ShaderUniform location, s32 x, s32 y) const { glUniform2i(m_UniformLocation->GetUniformLocation… in SetUniformInt() argument
260 …ShaderUniform location, s32 x, s32 y, s32 z) const { glUniform3i(m_UniformLocation->GetUniformLoca… in SetUniformInt() argument
270 …erUniform location, s32 x, s32 y, s32 z, s32 w) const { glUniform4i(m_UniformLocation->GetUniformL… in SetUniformInt() argument
549 void SetVertexUniformInt(int index, s32 x, s32 y) const in SetVertexUniformInt() argument
552 m_VertexIntUniforms[2 + index] = (x & 0xFF) | ((y & 0xFF) << 8); in SetVertexUniformInt()
561 void SetGeometryUniformInt(int index, s32 x, s32 y) const in SetGeometryUniformInt() argument
564 m_GeometryIntUniforms[2 + index] = (x & 0xFF) | ((y & 0xFF) << 8); in SetGeometryUniformInt()
574 void SetVertexUniformInt(int index, s32 x, s32 y, s32 z) const in SetVertexUniformInt() argument
577 m_VertexIntUniforms[2 + index] = (x & 0xFF) | ((y & 0xFF) << 8) | ((z & 0xFF) << 16); in SetVertexUniformInt()
587 void SetGeometryUniformInt(int index, s32 x, s32 y, s32 z) const in SetGeometryUniformInt() argument
590 m_GeometryIntUniforms[2 + index] = (x & 0xFF) | ((y & 0xFF) << 8) | ((z & 0xFF) << 16); in SetGeometryUniformInt()