chromium/gpu/command_buffer/client/program_info_manager_unittest.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "gpu/command_buffer/client/program_info_manager.h"

#include <stddef.h>
#include <stdint.h>

#include <memory>

#include "base/memory/raw_ptr.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace {

uint32_t ComputeOffset(const void* start, const void* position) {}

const GLuint kClientProgramId =;

}  // namespace anonymous

namespace gpu {
namespace gles2 {

class ProgramInfoManagerTest : public testing::Test {};

TEST_F(ProgramInfoManagerTest, UpdateES2) {}

TEST_F(ProgramInfoManagerTest, UpdateES3UniformBlocks) {}

TEST_F(ProgramInfoManagerTest, UpdateES3TransformFeedbackVaryings) {}

TEST_F(ProgramInfoManagerTest, GetUniformBlockIndexCached) {}

TEST_F(ProgramInfoManagerTest, GetActiveUniformBlockNameCached) {}

TEST_F(ProgramInfoManagerTest, GetActiveUniformBlockivCached) {}

TEST_F(ProgramInfoManagerTest, GetTransformFeedbackVaryingCached) {}

TEST_F(ProgramInfoManagerTest, GetUniformIndices) {}

TEST_F(ProgramInfoManagerTest, GetActiveUniformsivCached) {}

}  // namespace gles2
}  // namespace gpu