mirror of
https://github.com/86Box/86Box.git
synced 2026-02-24 02:18:20 -07:00
Create a bunch of placeholder c files for every single fucking class
This commit is contained in:
@@ -1101,7 +1101,6 @@ typedef struct nv3_ramin_ramht_s
|
||||
nv3_ramin_ramht_subchannel_t subchannels[NV3_DMA_CHANNELS][NV3_DMA_SUBCHANNELS_PER_CHANNEL];
|
||||
} nv3_ramin_ramht_t;
|
||||
|
||||
uint32_t nv3_ramht_hash(nv3_ramin_name_t name, uint32_t channel);
|
||||
|
||||
typedef enum nv3_ramin_ramro_reason_e
|
||||
{
|
||||
@@ -1152,8 +1151,6 @@ typedef struct nv3_ramin_s
|
||||
|
||||
} nv3_ramin_t;
|
||||
|
||||
// RAMIN functions
|
||||
void nv3_ramin_find_object(uint32_t name, uint32_t cache_id, uint32_t channel_id, uint32_t subchannel_id);
|
||||
|
||||
typedef struct nv3_pvideo_s
|
||||
{
|
||||
@@ -1231,6 +1228,10 @@ void nv3_ramin_write32(uint32_t addr, uint32_t val, void* priv);
|
||||
bool nv3_ramin_arbitrate_read(uint32_t address, uint32_t* value); // Read arbitration so we can read/write to the structures in the first 64k of ramin
|
||||
bool nv3_ramin_arbitrate_write(uint32_t address, uint32_t value); // Write arbitration so we can read/write to the structures in the first 64k of ramin
|
||||
|
||||
// RAMIN functions
|
||||
uint32_t nv3_ramht_hash(nv3_ramin_name_t name, uint32_t channel);
|
||||
void nv3_ramin_find_object(uint32_t name, uint32_t cache_id, uint32_t channel_id, uint32_t subchannel_id);
|
||||
|
||||
uint32_t nv3_ramfc_read(uint32_t address);
|
||||
void nv3_ramfc_write(uint32_t address, uint32_t value);
|
||||
uint32_t nv3_ramro_read(uint32_t address);
|
||||
|
||||
@@ -11,8 +11,11 @@
|
||||
# Authors: David Hrdlička, <hrdlickadavid@outlook.com>
|
||||
#
|
||||
# Copyright 2020-2021 David Hrdlička.
|
||||
# Copyright 2025 Connor Hyde
|
||||
#
|
||||
|
||||
# todo: Split nv stuff into its own file...
|
||||
|
||||
add_library(vid OBJECT agpgart.c video.c vid_table.c vid_cga.c vid_cga_comp.c
|
||||
vid_compaq_cga.c vid_mda.c vid_hercules.c vid_herculesplus.c
|
||||
vid_incolor.c vid_colorplus.c vid_genius.c vid_pgc.c vid_im1024.c
|
||||
@@ -43,6 +46,29 @@ add_library(vid OBJECT agpgart.c video.c vid_table.c vid_cga.c vid_cga_comp.c
|
||||
nv/nv3/subsystems/nv3_pvideo.c
|
||||
|
||||
nv/nv3/classes/nv3_class_names.c
|
||||
nv/nv3/classes/nv3_class_001_beta_factor.c
|
||||
nv/nv3/classes/nv3_class_002_rop.c
|
||||
nv/nv3/classes/nv3_class_003_chroma_key.c
|
||||
nv/nv3/classes/nv3_class_004_plane_mask.c
|
||||
nv/nv3/classes/nv3_class_005_clipping_rectangle.c
|
||||
nv/nv3/classes/nv3_class_006_pattern.c
|
||||
nv/nv3/classes/nv3_class_007_rectangle.c
|
||||
nv/nv3/classes/nv3_class_008_point.c
|
||||
nv/nv3/classes/nv3_class_009_line.c
|
||||
nv/nv3/classes/nv3_class_00a_lin.c
|
||||
nv/nv3/classes/nv3_class_00b_triangle.c
|
||||
nv/nv3/classes/nv3_class_00c_win95_gdi_text.c
|
||||
nv/nv3/classes/nv3_class_00d_m2mf.c
|
||||
nv/nv3/classes/nv3_class_00e_scaled_image_from_mem.c
|
||||
nv/nv3/classes/nv3_class_010_blit.c
|
||||
nv/nv3/classes/nv3_class_011_image.c
|
||||
nv/nv3/classes/nv3_class_012_bitmap.c
|
||||
nv/nv3/classes/nv3_class_014_transfer2memory.c
|
||||
nv/nv3/classes/nv3_class_015_stretched_image_from_cpu.c
|
||||
nv/nv3/classes/nv3_class_017_d3d5_tri_zeta_buffer.c
|
||||
nv/nv3/classes/nv3_class_018_point_zeta_buffer.c
|
||||
nv/nv3/classes/nv3_class_01c_image_in_memory.c
|
||||
|
||||
)
|
||||
|
||||
if(G100)
|
||||
|
||||
16
src/video/nv/nv3/classes/nv3_class_001_beta_factor.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_001_beta_factor.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x01 (Beta factor)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_002_rop.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_002_rop.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x02 (Render operation)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_003_chroma_key.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_003_chroma_key.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x02 (Chroma/color key)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_004_plane_mask.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_004_plane_mask.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x02 (Plane mask)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_005_clipping_rectangle.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_005_clipping_rectangle.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x05 (Clipping rectangle)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_006_pattern.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_006_pattern.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x06 (Pattern)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_007_rectangle.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_007_rectangle.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x07 (Rectangle)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_008_point.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_008_point.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x08 (Point)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_009_line.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_009_line.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x09 (Line)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_00a_lin.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_00a_lin.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x0A (Lin - a line without starting or ending pixels)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_00b_triangle.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_00b_triangle.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x0B (Basic triangle)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_00c_win95_gdi_text.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_00c_win95_gdi_text.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x0C (Windows 95 GDI text acceleration)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_00d_m2mf.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_00d_m2mf.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x0D (Reformat image in memory)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x0E (Get image from vram and scale it)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_010_blit.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_010_blit.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x10 (Blit something)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_011_image.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_011_image.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x11 (Color image)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_012_bitmap.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_012_bitmap.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x12 (Monochrome bitmap)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_014_transfer2memory.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_014_transfer2memory.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x14 (Transfer to Memory)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x15 (stretched image to memory)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x17 (Direct3D 5.0 accelerated triangle with zeta buffer)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_018_point_zeta_buffer.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_018_point_zeta_buffer.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x18 (Point with zeta buffer)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
16
src/video/nv/nv3/classes/nv3_class_01c_image_in_memory.c
Normal file
16
src/video/nv/nv3/classes/nv3_class_01c_image_in_memory.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* NV3: Methods for class 0x1C (Image in memory)
|
||||
*
|
||||
*
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
@@ -12,7 +12,7 @@
|
||||
*
|
||||
* Authors: Connor Hyde, <mario64crashed@gmail.com> I need a better email address ;^)
|
||||
*
|
||||
* Copyright 2024-2025 starfrost
|
||||
* Copyright 2024-2025 Connor Hyde
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
@@ -34,7 +34,7 @@ const char* nv3_class_names[] =
|
||||
{
|
||||
"NV3 INVALID class 0x00",
|
||||
"NV3 class 0x01: Beta factor",
|
||||
"NV3 class 0x02: ROP5 (32-bit) operation",
|
||||
"NV3 class 0x02: Render operation",
|
||||
"NV3 class 0x03: Chroma key",
|
||||
"NV3 class 0x04: Plane mask",
|
||||
"NV3 class 0x05: Clipping rectangle",
|
||||
|
||||
@@ -331,4 +331,10 @@ bool nv3_ramin_arbitrate_write(uint32_t address, uint32_t value)
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
// THIS IS THE MOST IMPORTANT FUNCTION!
|
||||
void nv3_ramin_find_object(uint32_t name, uint32_t cache_id, uint32_t channel_id, uint32_t subchannel_id)
|
||||
{
|
||||
// TODO: WRITE IT!!!
|
||||
}
|
||||
Reference in New Issue
Block a user