mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
17 lines
527 B
C++
17 lines
527 B
C++
// Copyright 2009 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
struct InputVertexData;
|
|
struct OutputVertexData;
|
|
|
|
namespace TransformUnit
|
|
{
|
|
void TransformPosition(const InputVertexData* src, OutputVertexData* dst);
|
|
void TransformNormal(const InputVertexData* src, bool nbt, OutputVertexData* dst);
|
|
void TransformColor(const InputVertexData* src, OutputVertexData* dst);
|
|
void TransformTexCoord(const InputVertexData* src, OutputVertexData* dst, bool specialCase);
|
|
}
|