16 lines
617 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Untitled
date: 2024-02-04 12:57:56
excerpt:
tags:
rating: ⭐
---
# 前言
原文地址https://www.cnblogs.com/timlly/p/15156626.html
# 概念
- FRenderResource是渲染线程的渲染资源基础父类实际的数据和逻辑由子类实现。可以认为是渲染线程中承载**CPU相关相关渲染的载体**。
- 比如输入的顶点数据、顶点Index数据、贴图数据等。
- FRHIResource抽象了GPU侧的资源也是众多RHI资源类型的父类。可以认为是承载**显卡API相关资源的载体**。
- 比如TextureSampler、TextureObject等。
- FRHICommand