About: Graphics pipeline     Goto   Sponge   NotDistinct   Permalink

An Entity of Type : dbo:MusicGenre, within Data Space : dbpedia.org associated with source document(s)
QRcode icon
http://dbpedia.org/describe/?url=http%3A%2F%2Fdbpedia.org%2Fresource%2FGraphics_pipeline

In computer graphics, a computer graphics pipeline, rendering pipeline or simply graphics pipeline, is a conceptual model that describes what steps a graphics system needs to perform to render a 3D scene to a 2D screen. Once a 3D model has been created, for instance in a video game or any other 3D computer animation, the graphics pipeline is the process of turning that 3D model into what the computer displays. Because the steps required for this operation depend on the software and hardware used and the desired display characteristics, there is no universal graphics pipeline suitable for all cases. However, graphics application programming interfaces (APIs) such as Direct3D and OpenGL were created to unify similar steps and to control the graphics pipeline of a given hardware accelerator.

AttributesValues
rdf:type
rdfs:label
  • ماسورة الرسوميات (ar)
  • Vykreslovací řetězec (cs)
  • Grafikpipeline (de)
  • Tubería de renderizado (es)
  • Graphics pipeline (en)
  • Pipeline grafica (it)
  • Pipeline 3D (fr)
  • グラフィックスパイプライン (ja)
  • 그래픽스 파이프라인 (ko)
  • Графічний конвеєр (uk)
  • 繪圖管線 (zh)
rdfs:comment
  • في الرسوميات ثلاثية الأبعاد، ماسورة الرسوميات (بالإنجليزية: Graphics pipeline)‏ هي الطريقة الحالية للتصيير بطريقة (بالإنجليزية: rasterization)‏ في وحدات معالجة الرسويات الموجودة حالياً في الأسواق. وهي تتلقى مشهد ثلاثي الأبعاد وتحوله إلى رسوميات نقطية ثنائية الأبعاد لعرضها على شاشة الحاسوب. وإن واجهتي دايركت ثري دي ومكتبة الرسوميات المفتوحة هما من أهم معاير نماذج مواسير الرسوميات المعتمدة عالمياً. (ar)
  • En gráficos 3D por computadora, el término tubería de gráficos o tubería de renderizado (del inglés rendering pipeline) se refiere comúnmente a la renderización basada en la implementación hardware de gráficos (tarjeta gráfica). La tubería de renderizado típicamente recibe la representación de una escena tridimensional como entrada y genera una imagen en dos dimensiones como salida. OpenGL y Direct3D son dos estándares gráficos que proporcionan tuberías de renderizado y permiten además la programación de shaders para modificar su comportamiento. (es)
  • グラフィックス パイプライン(英: graphics pipeline)またはレンダリング パイプライン(英: rendering pipeline)は、3次元コンピュータグラフィックスの計算処理方法の1つであり、3次元モデルのデータから2次元画像のイメージを作り出す多段階の過程全体を指し、それらの計算をパイプライン処理によって高速化する手法を示す。グラフィックスパイプラインは、時間のかかるレンダリング処理の高速化に注力している。この用語は、専用ハードウェア(グラフィックスカード、GPU)または汎用機のソフトウェア(CPU)を使用した、3D-2D変換の内部処理の各過程の総体を示し、処理途中に人の関与が無いブラックボックスであることを暗に示す。 コンピュータグラフィックスには大きく分けて映画やCMなどのプロダクション用途と、CADやシミュレーション可視化、ゲームなどのリアルタイム用途の2つがある。それぞれのグラフィックスパイプラインの各段に割かれるリソースの比重や、用いられるハードウェア、およびレンダリング方程式や照明アルゴリズムの厳密度は異なるが、基本的な流れ・考え方は同じである。 以下にグラフィックスパイプライン処理の各段階を示すが、3DCG処理の全体像については3次元コンピュータグラフィックスを参照のこと。 (ja)
  • 3차원 컴퓨터 그래픽스에서 그래픽스 파이프라인(graphics pipeline) 또는 렌더링 파이프라인(rendering pipeline)은 3차원 이미지를 2차원 래스터 이미지로 표현을 하기위한 단계적인 방법을 말한다. 여기서 래스터(raster)란 컴퓨터에서 화상 정보를 표현하는 한 가지 방법으로 이미지를 2차원 배열 형태의 픽셀로 구성하고 이 점들의 모습을 조합, 일정한 간격의 픽셀들로 하나의 화상 정보를 표현하는 것을 말한다. 즉, 한 줄에서 연속된 픽셀들의 집합을 래스터라고 한다. OpenGL과 Direct3D가 두 개의 3차원 그래픽 표준으로, 매우 비슷한 그래픽 파이프라인을 기술하고 있다. (ko)
  • Una pipeline grafica, nella computer grafica 3D, è una sequenza di operazioni atte a restituire e aggiornare un'immagine bitmap, partendo dagli oggetti tridimensionali presenti nella scena. Per realizzare l'immagine bitmap la pipeline può implementare uno o più algoritmi come lo Z-buffering, il , ray tracing e altri algoritmi. (it)
  • 绘图流水线(Graphics pipeline,亦称绘图管线)是计算机图形系统将三维模型渲染到二维屏幕上的过程。简单地说,在计算机即将显示电子游戏或三维动画内的三维模型时,绘图流水线就是把该模型转换成屏幕画面的过程。由于这个过程中所进行的操作严重依赖用户所使用的软件、硬件等,因此并不存在通用的绘图流水线。尽管如此,现今存在着类似Vulkan、OpenGL和DirectX的图形接口,将相似的操作统一起来,并把底层硬件抽象化,以减轻程序员的负担。 为了争取更多的优化机会,绘图流水线大多时候是用硬件实现的。尽管预渲染同样可以使用显卡计算,但由于其相对于一般实时渲染流水线更加依赖显卡的通用运算单位,因此这个过程一般仅用于形容实时渲染。 (zh)
  • Vykreslovací řetězec (nebo též grafický řetězec) je pojem z oblasti počítačové grafiky, kterým označujeme sekvenci procesů, jejichž aplikací na data popisující scénu získáme dvourozměrný obraz této scény. O vlastní provedení těchto procesů se stará grafický procesor (GPU), který je součástí grafické karty počítače. Získaný obraz lze následně zobrazit vhodným výstupním zařízením — např. monitorem. Konkrétní podoba a chování vykreslovacího řetězce jsou dány některým ze standardů pro 3D grafiku. Mezi nejvýznamnější standardy v této oblasti patří OpenGL a Direct3D (součást DirectX). (cs)
  • Eine Computergrafik-Pipeline, auch Rendering-Pipeline oder einfach Grafikpipeline, ist eine Modellvorstellung in der Computergrafik, die beschreibt, welche Schritte ein Grafiksystem zum Rendern, also zur Darstellung einer 3D-Szene auf einem Bildschirm, durchführen muss. Da diese Schritte sowohl von der Soft- und Hardware als auch von den gewünschten Darstellungseigenschaften abhängen, gibt es keine allgemein gültige Grafikpipeline. Zur Ansteuerung von Grafikpipelines werden üblicherweise Grafik-APIs wie Direct3D oder OpenGL verwendet, die die zugrundeliegende Hardware abstrahieren und dem Programmierer viele Aufgaben abnehmen. (de)
  • In computer graphics, a computer graphics pipeline, rendering pipeline or simply graphics pipeline, is a conceptual model that describes what steps a graphics system needs to perform to render a 3D scene to a 2D screen. Once a 3D model has been created, for instance in a video game or any other 3D computer animation, the graphics pipeline is the process of turning that 3D model into what the computer displays. Because the steps required for this operation depend on the software and hardware used and the desired display characteristics, there is no universal graphics pipeline suitable for all cases. However, graphics application programming interfaces (APIs) such as Direct3D and OpenGL were created to unify similar steps and to control the graphics pipeline of a given hardware accelerator. (en)
  • On appelle pipeline 3D la succession des opérations généralement réalisées par une carte graphique nécessaires au rendu d'un lot de données (maillages et textures principalement) sur un , la plupart du temps celui-ci est ensuite affiché à l'écran. Les différentes étapes du pipeline 3D sont détaillées dans le schéma ci-contre. (fr)
  • У комп'ютерній графіці графічний конвеєр або конвеєр рендерингу — це концептуальна модель, яка описує, які кроки потрібно виконати графічній системі для рендерингу тривимірної сцени на двовимірний екран. Після створення 3D–моделі, наприклад, у відеогрі чи будь-якій іншій 3D-комп'ютерній анімації, графічний конвеєр — це процес перетворення цієї 3D–моделі в те, що зображається на комп'ютері. Оскільки кроки, необхідні для цієї операції, залежать від використовуваного програмного та апаратного забезпечення та бажаних характеристик дисплея, не існує універсального графічного конвеєра, який підходить для всіх випадків. Однак інтерфейси програмування графічних прикладних програм (API), такі як Direct3D і OpenGL, були створені для уніфікації подібних кроків та управління графічним конвеєром певног (uk)
foaf:depiction
  • http://commons.wikimedia.org/wiki/Special:FilePath/3D-Pipeline.svg
  • http://commons.wikimedia.org/wiki/Special:FilePath/Cube_clipping.svg
  • http://commons.wikimedia.org/wiki/Special:FilePath/Frustum.png
  • http://commons.wikimedia.org/wiki/Special:FilePath/Geometry_pipeline_en.svg
  • http://commons.wikimedia.org/wiki/Special:FilePath/Graphics_pipeline_2_en.svg
  • http://commons.wikimedia.org/wiki/Special:FilePath/Screen_Mapping.svg
  • http://commons.wikimedia.org/wiki/Special:FilePath/View_transform.svg
dcterms:subject
Wikipage page ID
Wikipage revision ID
Link from a Wikipage to another Wikipage
Faceted Search & Find service v1.17_git139 as of Feb 29 2024


Alternative Linked Data Documents: ODE     Content Formats:   [cxml] [csv]     RDF   [text] [turtle] [ld+json] [rdf+json] [rdf+xml]     ODATA   [atom+xml] [odata+json]     Microdata   [microdata+json] [html]    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 08.03.3330 as of Mar 19 2024, on Linux (x86_64-generic-linux-glibc212), Single-Server Edition (62 GB total memory, 60 GB memory in use)
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2024 OpenLink Software