Skip to main content

a library to easily integrate shaders into your new or existing pygame projects

Project description

Pygame Shaders

wakatime Lines of code

Downloads PyPI PyPI - Format Downloads

Easily integrate shaders into your new or existing pygame projects

This project allows for GLSL shaders to easily be intergrated with either your new or existing Pygame projects without having to touch OpenGL.

import pygame
import pygame_shaders

pygame.init()

clock = pygame.time.Clock()

#Create an opengl pygame Surface, this will act as our opengl context.  
screen = pygame.display.set_mode((600, 600), pygame.OPENGL | pygame.DOUBLEBUF)

#This is our main display we will do all of our standard pygame rendering on.
display = pygame.Surface((600, 600))

#The shader we are using to communicate with the opengl context (standard pygame drawing functionality does not work on opengl displays)
screen_shader = pygame_shaders.DefaultScreenShader(display) # <- Here we supply our default display, it's this display which will be displayed onto the opengl context via the screen_shader

#This is our shader object which we can use to render the given shaders onto the screen in various ways. 
shader = pygame_shaders.Shader(pygame_shaders.DEFAULT_VERTEX_SHADER, "fragment.glsl", screen) #<- Because we plan on using this shader for direct rendering (we supply the surface on which we plan to do said direct rendering in this case, screen) 

while True:
    #Fill the display with white
    display.fill((255, 255, 255))
    
    #Standard pygame event stuff
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            pygame.quit()

    #Render a rect onto the display using the standard pygame method for drawing rects.
    pygame.draw.rect(display, (255, 0, 0), (200, 200, 20, 20))
    
    #Render the contents of "display" (main surface) onto the opengl screen.
    screen_shader.render() 

    #Render the shader directly onto the display.
    shader.render_direct(pygame.Rect(0, 0, 100, 100)) 

    #Update the opengl context
    pygame.display.flip()
    clock.tick(60)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pygame_shaders-2.0.2.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

pygame_shaders-2.0.2-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file pygame_shaders-2.0.2.tar.gz.

File metadata

  • Download URL: pygame_shaders-2.0.2.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for pygame_shaders-2.0.2.tar.gz
Algorithm Hash digest
SHA256 d18235dc4e2112db9b9b7afd340b9e633829404eb0a18c0df09ff0b6f3d32c90
MD5 c4f8e840cb553a80395b8d821e968258
BLAKE2b-256 54df3260e26c531219df06bc229ce0fe6172a64b810fc9b60157f62283b98218

See more details on using hashes here.

File details

Details for the file pygame_shaders-2.0.2-py3-none-any.whl.

File metadata

  • Download URL: pygame_shaders-2.0.2-py3-none-any.whl
  • Upload date:
  • Size: 7.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for pygame_shaders-2.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 828e1441512febce7c78cd82fc574dff2cc9803ac47c6aa0d28c298790b88004
MD5 7aa8f1efd63617f6655ed79c85061a04
BLAKE2b-256 eb14d4d1cc1a42140313e0b8785874bd663b26f73401160820fd57b539649a91

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page